From 06de43b5b2fee5bdeeb137bad48f125adfa71b9a Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Fri, 6 Nov 2020 11:58:29 -0800 Subject: [PATCH 1/8] Add support for Redis Enterprise. --- .../redisenterprise_resource-manager.txt | 14 + .../AzSdk.RP.props | 7 + ....Azure.Management.RedisEnterpriseCache.sln | 28 + .../src/Generated/DatabasesOperations.cs | 1319 ++++++++++++++ .../DatabasesOperationsExtensions.cs | 439 +++++ .../src/Generated/GetOperations.cs | 245 +++ .../src/Generated/GetOperationsExtensions.cs | 65 + .../src/Generated/IDatabasesOperations.cs | 276 +++ .../src/Generated/IGetOperations.cs | 52 + .../src/Generated/IOperations.cs | 70 + .../IPrivateEndpointConnectionsOperations.cs | 176 ++ .../IPrivateLinkResourcesOperations.cs | 53 + .../IRedisEnterpriseDatabaseOperations.cs | 231 +++ .../Generated/IRedisEnterpriseOperations.cs | 295 +++ .../src/Generated/IredisenterpriseClient.cs | 110 ++ .../src/Generated/Models/AccessKeyType.cs | 60 + .../src/Generated/Models/AccessKeys.cs | 64 + .../src/Generated/Models/ActionType.cs | 21 + .../Generated/Models/AzureEntityResource.cs | 59 + .../src/Generated/Models/Cluster.cs | 141 ++ .../src/Generated/Models/ClusterUpdate.cs | 130 ++ .../src/Generated/Models/ClusteringPolicy.cs | 22 + .../src/Generated/Models/Database.cs | 141 ++ .../src/Generated/Models/DatabaseUpdate.cs | 134 ++ .../Generated/Models/ErrorAdditionalInfo.cs | 59 + .../src/Generated/Models/ErrorDetail.cs | 85 + .../src/Generated/Models/ErrorResponse.cs | 56 + .../Models/ErrorResponseException.cs | 62 + .../src/Generated/Models/EvictionPolicy.cs | 28 + .../Models/ExportClusterParameters.cs | 55 + .../Models/ImportClusterParameters.cs | 55 + .../src/Generated/Models/Module.cs | 75 + .../src/Generated/Models/Operation.cs | 106 ++ .../src/Generated/Models/OperationDisplay.cs | 89 + .../src/Generated/Models/OperationStatus.cs | 92 + .../src/Generated/Models/Origin.cs | 23 + .../src/Generated/Models/Page.cs | 53 + .../src/Generated/Models/Page1.cs | 53 + .../src/Generated/Models/PrivateEndpoint.cs | 51 + .../Models/PrivateEndpointConnection.cs | 85 + ...vateEndpointConnectionProvisioningState.cs | 24 + .../PrivateEndpointServiceConnectionStatus.cs | 23 + .../Generated/Models/PrivateLinkResource.cs | 81 + .../PrivateLinkServiceConnectionState.cs | 77 + .../src/Generated/Models/Protocol.cs | 22 + .../src/Generated/Models/ProvisioningState.cs | 26 + .../src/Generated/Models/ProxyResource.cs | 50 + .../Models/RegenerateKeyParameters.cs | 56 + .../src/Generated/Models/Resource.cs | 76 + .../src/Generated/Models/ResourceState.cs | 32 + .../src/Generated/Models/Sku.cs | 72 + .../src/Generated/Models/SkuName.cs | 27 + .../src/Generated/Models/TrackedResource.cs | 70 + .../src/Generated/Operations.cs | 392 ++++ .../src/Generated/OperationsExtensions.cs | 91 + .../PrivateEndpointConnectionsOperations.cs | 875 +++++++++ ...EndpointConnectionsOperationsExtensions.cs | 278 +++ .../PrivateLinkResourcesOperations.cs | 246 +++ ...rivateLinkResourcesOperationsExtensions.cs | 69 + .../RedisEnterpriseDatabaseOperations.cs | 948 ++++++++++ ...sEnterpriseDatabaseOperationsExtensions.cs | 375 ++++ .../Generated/RedisEnterpriseOperations.cs | 1608 +++++++++++++++++ .../RedisEnterpriseOperationsExtensions.cs | 457 +++++ .../src/Generated/SdkInfo_redisEnterprise.cs | 33 + .../src/Generated/redisenterpriseClient.cs | 398 ++++ ...ft.Azure.Management.RedisEnterprise.csproj | 21 + .../src/Properties/AssemblyInfo.cs | 20 + .../src/generate.ps1 | 1 + .../tests/DummyResponseDelegatingHandler.cs | 29 + ...nagement.RedisEnterpriseCache.Tests.csproj | 27 + .../tests/Properties/AssemblyInfo.cs | 39 + .../BeginCreateFunctionalTests.cs | 93 + .../CreateUpdateDeleteFunctionalTests.cs | 95 + .../RedisEnterpriseCacheManagementHelper.cs | 96 + ...sEnterpriseCacheManagementTestUtilities.cs | 33 + .../tests/ScenarioTests/TestsFixture.cs | 71 + .../tests/Utility.cs | 48 + 77 files changed, 12158 insertions(+) create mode 100644 eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/Microsoft.Azure.Management.RedisEnterpriseCache.sln create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeyType.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeys.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ActionType.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusteringPolicy.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorAdditionalInfo.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorDetail.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponse.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponseException.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/EvictionPolicy.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Module.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationDisplay.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationStatus.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Origin.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page1.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpoint.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnection.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkResource.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkServiceConnectionState.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Protocol.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProvisioningState.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RegenerateKeyParameters.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ResourceState.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Sku.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/SkuName.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/generate.ps1 create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Properties/AssemblyInfo.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs diff --git a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt new file mode 100644 index 000000000000..c80ebaf2a1f4 --- /dev/null +++ b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: v2 +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/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\repos\azure-sdk-for-net\sdk +2020-11-02 23:59:30 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: f150a6d5f430d8645093d5c28ca7bfd28c96c477 +AutoRest information +Requested version: v2 +Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props new file mode 100644 index 000000000000..2c975fddf604 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props @@ -0,0 +1,7 @@ + + + + RedisEnterpriseCache_2020-10-01-preview; + $(PackageTags);$(CommonTags);$(AzureApiTag); + + \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/Microsoft.Azure.Management.RedisEnterpriseCache.sln b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/Microsoft.Azure.Management.RedisEnterpriseCache.sln new file mode 100644 index 000000000000..bdcfab504bdd --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/Microsoft.Azure.Management.RedisEnterpriseCache.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26228.4 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{3238ECD2-ED0C-459A-B6E7-9625BF49E787}") = "Microsoft.Azure.Management.RedisEnterpriseCache.Tests", "tests\Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj", "{C48270D4-AEEC-4AC2-BCD4-130DD1F6D51D}" +EndProject +Project("{3238ECD2-ED0C-459A-B6E7-9625BF49E787}") = "Microsoft.Azure.Management.RedisEnterprise", "src\Microsoft.Azure.Management.RedisEnterprise.csproj", "{C5030563-FC2F-47F9-A407-05C81C09BAD6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C48270D4-AEEC-4AC2-BCD4-130DD1F6D51D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C48270D4-AEEC-4AC2-BCD4-130DD1F6D51D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C48270D4-AEEC-4AC2-BCD4-130DD1F6D51D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C48270D4-AEEC-4AC2-BCD4-130DD1F6D51D}.Release|Any CPU.Build.0 = Release|Any CPU + {C5030563-FC2F-47F9-A407-05C81C09BAD6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C5030563-FC2F-47F9-A407-05C81C09BAD6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C5030563-FC2F-47F9-A407-05C81C09BAD6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C5030563-FC2F-47F9-A407-05C81C09BAD6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs new file mode 100644 index 000000000000..1e6c45a8c747 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs @@ -0,0 +1,1319 @@ +// +// 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.RedisEnterprise +{ + 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; + + /// + /// DatabasesOperations operations. + /// + internal partial class DatabasesOperations : IServiceOperations, IDatabasesOperations + { + /// + /// Initializes a new instance of the DatabasesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal DatabasesOperations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", 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/redisEnterprise/{clusterName}/databases").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + 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; + } + + /// + /// Creates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets information about a database in a RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetMethod", 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/redisEnterprise/{clusterName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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; + } + + /// + /// Deletes a single database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + 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/redisEnterprise/{clusterName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // 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); + } + return _result; + } + + /// + /// Updates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/redisEnterprise/{clusterName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("PATCH"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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; + } + + /// + /// Deletes a single database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/redisEnterprise/{clusterName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("DELETE"); + _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 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByClusterNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs new file mode 100644 index 000000000000..83820e2e4907 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs @@ -0,0 +1,439 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for DatabasesOperations. + /// + public static partial class DatabasesOperationsExtensions + { + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + public static IPage ListByCluster(this IDatabasesOperations operations, string resourceGroupName, string clusterName) + { + return operations.ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByClusterAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + public static Database Create(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, Database parameters) + { + return operations.CreateAsync(resourceGroupName, clusterName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, Database parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + public static Database Update(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters) + { + return operations.UpdateAsync(resourceGroupName, clusterName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets information about a database in a RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + public static Database GetMethod(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName) + { + return operations.GetMethodAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets information about a database in a RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task GetMethodAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetMethodWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a single database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + public static void Delete(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName) + { + operations.DeleteAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a single database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Creates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + public static Database BeginCreate(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, Database parameters) + { + return operations.BeginCreateAsync(resourceGroupName, clusterName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, Database parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + public static Database BeginUpdate(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, clusterName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates a database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a single database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + public static void BeginDelete(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName) + { + operations.BeginDeleteAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a single database + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByClusterNext(this IDatabasesOperations operations, string nextPageLink) + { + return operations.ListByClusterNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByClusterNextAsync(this IDatabasesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByClusterNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.cs new file mode 100644 index 000000000000..26cb9566e005 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.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.RedisEnterprise +{ + 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; + + /// + /// GetOperations operations. + /// + internal partial class GetOperations : IServiceOperations, IGetOperations + { + /// + /// Initializes a new instance of the GetOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal GetOperations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Gets the status of operation. + /// + /// + /// The region the operation is in. + /// + /// + /// The operation's unique identifier. + /// + /// + /// 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> OperationStatusMethodWithHttpMessagesAsync(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, "OperationStatusMethod", 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}/operationsStatus/{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/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.cs new file mode 100644 index 000000000000..72bb4e804449 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for GetOperations. + /// + public static partial class GetOperationsExtensions + { + /// + /// Gets the status of operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The region the operation is in. + /// + /// + /// The operation's unique identifier. + /// + public static OperationStatus OperationStatusMethod(this IGetOperations operations, string location, string operationId) + { + return operations.OperationStatusMethodAsync(location, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the status of operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The region the operation is in. + /// + /// + /// The operation's unique identifier. + /// + /// + /// The cancellation token. + /// + public static async Task OperationStatusMethodAsync(this IGetOperations operations, string location, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.OperationStatusMethodWithHttpMessagesAsync(location, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs new file mode 100644 index 000000000000..d6ba476b6177 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs @@ -0,0 +1,276 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// DatabasesOperations operations. + /// + public partial interface IDatabasesOperations + { + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database 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> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets information about a database in a RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a single database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates a database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Parameters supplied to the create or update database 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 clusterName, string databaseName, DatabaseUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a single database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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 clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all databases in the specified RedisEnterprise cluster. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.cs new file mode 100644 index 000000000000..4e8d03c77999 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// GetOperations operations. + /// + public partial interface IGetOperations + { + /// + /// Gets the status of operation. + /// + /// + /// The region the operation is in. + /// + /// + /// The operation's unique identifier. + /// + /// + /// 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> OperationStatusMethodWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperations.cs new file mode 100644 index 000000000000..7b7e539381be --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperations.cs @@ -0,0 +1,70 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available REST API operations of the + /// Microsoft.Cache provider. + /// + /// + /// 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>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available REST API operations of the + /// Microsoft.Cache provider. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..348015bde592 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs @@ -0,0 +1,176 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + public partial interface IPrivateEndpointConnectionsOperations + { + /// + /// Lists all the private endpoint connections associated with the + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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>> ListWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// 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> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the state of the specified private endpoint connection + /// associated with the RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// 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> PutWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified private endpoint connection associated with + /// the RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the state of the specified private endpoint connection + /// associated with the RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// 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> BeginPutWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..33ee7084e6ab --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs @@ -0,0 +1,53 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateLinkResourcesOperations operations. + /// + public partial interface IPrivateLinkResourcesOperations + { + /// + /// Gets the private link resources that need to be created for a + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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>> ListByRedisEnterpriseCacheWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs new file mode 100644 index 000000000000..2097d861acbc --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs @@ -0,0 +1,231 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// RedisEnterpriseDatabaseOperations operations. + /// + public partial interface IRedisEnterpriseDatabaseOperations + { + /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// 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> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// 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 ImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// 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 ExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// 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> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// 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 BeginImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// 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 BeginExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs new file mode 100644 index 000000000000..9564f8acc5c7 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs @@ -0,0 +1,295 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// RedisEnterpriseOperations operations. + /// + public partial interface IRedisEnterpriseOperations + { + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise 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> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets information about a RedisEnterprise cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// 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>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise 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 clusterName, ClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs new file mode 100644 index 000000000000..ee6acd5d08da --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs @@ -0,0 +1,110 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + + /// + /// REST API for managing Redis Enterprise resources in Azure. + /// + public partial interface IredisenterpriseClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// Gets subscription credentials which uniquely identify the Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// + string SubscriptionId { get; set; } + + /// + /// Client Api Version. + /// + string ApiVersion { get; } + + /// + /// The preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// The retry timeout in seconds for Long Running Operations. Default + /// value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// Whether a unique x-ms-client-request-id should be generated. When + /// set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + + /// + /// Gets the IGetOperations. + /// + IGetOperations Get { get; } + + /// + /// Gets the IRedisEnterpriseOperations. + /// + IRedisEnterpriseOperations RedisEnterprise { get; } + + /// + /// Gets the IDatabasesOperations. + /// + IDatabasesOperations Databases { get; } + + /// + /// Gets the IRedisEnterpriseDatabaseOperations. + /// + IRedisEnterpriseDatabaseOperations RedisEnterpriseDatabase { get; } + + /// + /// Gets the IPrivateEndpointConnectionsOperations. + /// + IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; } + + /// + /// Gets the IPrivateLinkResourcesOperations. + /// + IPrivateLinkResourcesOperations PrivateLinkResources { get; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeyType.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeyType.cs new file mode 100644 index 000000000000..f0e5efe20b5c --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeyType.cs @@ -0,0 +1,60 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for AccessKeyType. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum AccessKeyType + { + [EnumMember(Value = "Primary")] + Primary, + [EnumMember(Value = "Secondary")] + Secondary + } + internal static class AccessKeyTypeEnumExtension + { + internal static string ToSerializedValue(this AccessKeyType? value) + { + return value == null ? null : ((AccessKeyType)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this AccessKeyType value) + { + switch( value ) + { + case AccessKeyType.Primary: + return "Primary"; + case AccessKeyType.Secondary: + return "Secondary"; + } + return null; + } + + internal static AccessKeyType? ParseAccessKeyType(this string value) + { + switch( value ) + { + case "Primary": + return AccessKeyType.Primary; + case "Secondary": + return AccessKeyType.Secondary; + } + return null; + } + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeys.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeys.cs new file mode 100644 index 000000000000..bdd77badeda0 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AccessKeys.cs @@ -0,0 +1,64 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Access keys + /// + /// + /// The secret access keys used for authenticating connections to redis + /// + public partial class AccessKeys + { + /// + /// Initializes a new instance of the AccessKeys class. + /// + public AccessKeys() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AccessKeys class. + /// + /// The current primary key that clients can + /// use to authenticate + /// The current secondary key that clients + /// can use to authenticate + public AccessKeys(string primaryKey = default(string), string secondaryKey = default(string)) + { + PrimaryKey = primaryKey; + SecondaryKey = secondaryKey; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the current primary key that clients can use to authenticate + /// + [JsonProperty(PropertyName = "primaryKey")] + public string PrimaryKey { get; private set; } + + /// + /// Gets the current secondary key that clients can use to authenticate + /// + [JsonProperty(PropertyName = "secondaryKey")] + public string SecondaryKey { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ActionType.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ActionType.cs new file mode 100644 index 000000000000..ebec019f8ffd --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ActionType.cs @@ -0,0 +1,21 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for ActionType. + /// + public static class ActionType + { + public const string Internal = "Internal"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs new file mode 100644 index 000000000000..78420c0fe015 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs @@ -0,0 +1,59 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The resource model definition for an Azure Resource Manager resource + /// with an etag. + /// + public partial class AzureEntityResource : Resource + { + /// + /// Initializes a new instance of the AzureEntityResource class. + /// + public AzureEntityResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureEntityResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Resource Etag. + public AzureEntityResource(string id = default(string), string name = default(string), string type = default(string), string etag = default(string)) + : base(id, name, type) + { + Etag = etag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Etag. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs new file mode 100644 index 000000000000..79ba9e52e8d2 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs @@ -0,0 +1,141 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the RedisEnterprise cluster + /// + [Rest.Serialization.JsonTransformation] + public partial class Cluster : TrackedResource + { + /// + /// Initializes a new instance of the Cluster class. + /// + public Cluster() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Cluster class. + /// + /// The geo-location where the resource + /// lives + /// The SKU to create, which affects price, + /// performance, and features. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Resource tags. + /// The zones where this cluster will be + /// deployed. + /// The minimum TLS version for the + /// cluster to support, e.g. '1.2' + /// DNS name of the cluster endpoint + /// Current provisioning status of the + /// cluster. Possible values include: 'Succeeded', 'Failed', + /// 'Canceled', 'Creating', 'Updating', 'Deleting' + /// Current resource status of the cluster. + /// Possible values include: 'Running', 'Creating', 'CreateFailed', + /// 'Updating', 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', + /// 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled' + /// Version of redis the cluster supports, + /// e.g. '6' + /// List of private endpoint + /// connections associated with the specified RedisEnterprise + /// cluster + public Cluster(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList zones = default(IList), string minimumTlsVersion = default(string), string hostName = default(string), string provisioningState = default(string), string resourceState = default(string), string redisVersion = default(string), IList privateEndpointConnections = default(IList)) + : base(location, id, name, type, tags) + { + Sku = sku; + Zones = zones; + MinimumTlsVersion = minimumTlsVersion; + HostName = hostName; + ProvisioningState = provisioningState; + ResourceState = resourceState; + RedisVersion = redisVersion; + PrivateEndpointConnections = privateEndpointConnections; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the SKU to create, which affects price, performance, + /// and features. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the zones where this cluster will be deployed. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Gets or sets the minimum TLS version for the cluster to support, + /// e.g. '1.2' + /// + [JsonProperty(PropertyName = "properties.minimumTlsVersion")] + public string MinimumTlsVersion { get; set; } + + /// + /// Gets DNS name of the cluster endpoint + /// + [JsonProperty(PropertyName = "properties.hostName")] + public string HostName { get; private set; } + + /// + /// Gets current provisioning status of the cluster. Possible values + /// include: 'Succeeded', 'Failed', 'Canceled', 'Creating', 'Updating', + /// 'Deleting' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets current resource status of the cluster. Possible values + /// include: 'Running', 'Creating', 'CreateFailed', 'Updating', + /// 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', + /// 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.resourceState")] + public string ResourceState { get; private set; } + + /// + /// Gets version of redis the cluster supports, e.g. '6' + /// + [JsonProperty(PropertyName = "properties.redisVersion")] + public string RedisVersion { get; private set; } + + /// + /// Gets list of private endpoint connections associated with the + /// specified RedisEnterprise cluster + /// + [JsonProperty(PropertyName = "properties.privateEndpointConnections")] + public IList PrivateEndpointConnections { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs new file mode 100644 index 000000000000..adce04dec229 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs @@ -0,0 +1,130 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A partial update to the RedisEnterprise cluster + /// + [Rest.Serialization.JsonTransformation] + public partial class ClusterUpdate + { + /// + /// Initializes a new instance of the ClusterUpdate class. + /// + public ClusterUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterUpdate class. + /// + /// The SKU to create, which affects price, + /// performance, and features. + /// The minimum TLS version for the + /// cluster to support, e.g. '1.2' + /// DNS name of the cluster endpoint + /// Current provisioning status of the + /// cluster. Possible values include: 'Succeeded', 'Failed', + /// 'Canceled', 'Creating', 'Updating', 'Deleting' + /// Current resource status of the cluster. + /// Possible values include: 'Running', 'Creating', 'CreateFailed', + /// 'Updating', 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', + /// 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled' + /// Version of redis the cluster supports, + /// e.g. '6' + /// List of private endpoint + /// connections associated with the specified RedisEnterprise + /// cluster + /// Resource tags. + public ClusterUpdate(Sku sku = default(Sku), string minimumTlsVersion = default(string), string hostName = default(string), string provisioningState = default(string), string resourceState = default(string), string redisVersion = default(string), IList privateEndpointConnections = default(IList), IDictionary tags = default(IDictionary)) + { + Sku = sku; + MinimumTlsVersion = minimumTlsVersion; + HostName = hostName; + ProvisioningState = provisioningState; + ResourceState = resourceState; + RedisVersion = redisVersion; + PrivateEndpointConnections = privateEndpointConnections; + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the SKU to create, which affects price, performance, + /// and features. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the minimum TLS version for the cluster to support, + /// e.g. '1.2' + /// + [JsonProperty(PropertyName = "properties.minimumTlsVersion")] + public string MinimumTlsVersion { get; set; } + + /// + /// Gets DNS name of the cluster endpoint + /// + [JsonProperty(PropertyName = "properties.hostName")] + public string HostName { get; private set; } + + /// + /// Gets current provisioning status of the cluster. Possible values + /// include: 'Succeeded', 'Failed', 'Canceled', 'Creating', 'Updating', + /// 'Deleting' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets current resource status of the cluster. Possible values + /// include: 'Running', 'Creating', 'CreateFailed', 'Updating', + /// 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', + /// 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.resourceState")] + public string ResourceState { get; private set; } + + /// + /// Gets version of redis the cluster supports, e.g. '6' + /// + [JsonProperty(PropertyName = "properties.redisVersion")] + public string RedisVersion { get; private set; } + + /// + /// Gets list of private endpoint connections associated with the + /// specified RedisEnterprise cluster + /// + [JsonProperty(PropertyName = "properties.privateEndpointConnections")] + public IList PrivateEndpointConnections { get; private set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusteringPolicy.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusteringPolicy.cs new file mode 100644 index 000000000000..7cada6ae8af9 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusteringPolicy.cs @@ -0,0 +1,22 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for ClusteringPolicy. + /// + public static class ClusteringPolicy + { + public const string EnterpriseCluster = "EnterpriseCluster"; + public const string OSSCluster = "OSSCluster"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs new file mode 100644 index 000000000000..c22d6e9dbda4 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs @@ -0,0 +1,141 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes a database on the RedisEnterprise cluster + /// + [Rest.Serialization.JsonTransformation] + public partial class Database : ProxyResource + { + /// + /// Initializes a new instance of the Database class. + /// + public Database() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Database class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Specifies whether redis clients can + /// connect using TLS-encrypted or plaintext redis protocols. Default + /// is TLS-encrypted. Possible values include: 'Encrypted', + /// 'Plaintext' + /// TCP port of the database endpoint. Specified at + /// create time. Defaults to an available port. + /// Current provisioning status of the + /// database. Possible values include: 'Succeeded', 'Failed', + /// 'Canceled', 'Creating', 'Updating', 'Deleting' + /// Current resource status of the + /// database. Possible values include: 'Running', 'Creating', + /// 'CreateFailed', 'Updating', 'UpdateFailed', 'Deleting', + /// 'DeleteFailed', 'Enabling', 'EnableFailed', 'Disabling', + /// 'DisableFailed', 'Disabled' + /// Clustering policy - default is + /// OSSCluster. Specified at create time. Possible values include: + /// 'EnterpriseCluster', 'OSSCluster' + /// Redis eviction policy - default is + /// VolatileLRU. Possible values include: 'AllKeysLFU', 'AllKeysLRU', + /// 'AllKeysRandom', 'VolatileLRU', 'VolatileLFU', 'VolatileTTL', + /// 'VolatileRandom', 'NoEviction' + /// Optional set of redis modules to enable in + /// this database - modules can only be added at creation time. + public Database(string id = default(string), string name = default(string), string type = default(string), string clientProtocol = default(string), int? port = default(int?), string provisioningState = default(string), string resourceState = default(string), string clusteringPolicy = default(string), string evictionPolicy = default(string), IList modules = default(IList)) + : base(id, name, type) + { + ClientProtocol = clientProtocol; + Port = port; + ProvisioningState = provisioningState; + ResourceState = resourceState; + ClusteringPolicy = clusteringPolicy; + EvictionPolicy = evictionPolicy; + Modules = modules; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies whether redis clients can connect using + /// TLS-encrypted or plaintext redis protocols. Default is + /// TLS-encrypted. Possible values include: 'Encrypted', 'Plaintext' + /// + [JsonProperty(PropertyName = "properties.clientProtocol")] + public string ClientProtocol { get; set; } + + /// + /// Gets or sets TCP port of the database endpoint. Specified at create + /// time. Defaults to an available port. + /// + [JsonProperty(PropertyName = "properties.port")] + public int? Port { get; set; } + + /// + /// Gets current provisioning status of the database. Possible values + /// include: 'Succeeded', 'Failed', 'Canceled', 'Creating', 'Updating', + /// 'Deleting' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets current resource status of the database. Possible values + /// include: 'Running', 'Creating', 'CreateFailed', 'Updating', + /// 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', + /// 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.resourceState")] + public string ResourceState { get; private set; } + + /// + /// Gets or sets clustering policy - default is OSSCluster. Specified + /// at create time. Possible values include: 'EnterpriseCluster', + /// 'OSSCluster' + /// + [JsonProperty(PropertyName = "properties.clusteringPolicy")] + public string ClusteringPolicy { get; set; } + + /// + /// Gets or sets redis eviction policy - default is VolatileLRU. + /// Possible values include: 'AllKeysLFU', 'AllKeysLRU', + /// 'AllKeysRandom', 'VolatileLRU', 'VolatileLFU', 'VolatileTTL', + /// 'VolatileRandom', 'NoEviction' + /// + [JsonProperty(PropertyName = "properties.evictionPolicy")] + public string EvictionPolicy { get; set; } + + /// + /// Gets or sets optional set of redis modules to enable in this + /// database - modules can only be added at creation time. + /// + [JsonProperty(PropertyName = "properties.modules")] + public IList Modules { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs new file mode 100644 index 000000000000..894b8b64adb0 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs @@ -0,0 +1,134 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A partial update to the RedisEnterprise database + /// + [Rest.Serialization.JsonTransformation] + public partial class DatabaseUpdate + { + /// + /// Initializes a new instance of the DatabaseUpdate class. + /// + public DatabaseUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DatabaseUpdate class. + /// + /// Specifies whether redis clients can + /// connect using TLS-encrypted or plaintext redis protocols. Default + /// is TLS-encrypted. Possible values include: 'Encrypted', + /// 'Plaintext' + /// TCP port of the database endpoint. Specified at + /// create time. Defaults to an available port. + /// Current provisioning status of the + /// database. Possible values include: 'Succeeded', 'Failed', + /// 'Canceled', 'Creating', 'Updating', 'Deleting' + /// Current resource status of the + /// database. Possible values include: 'Running', 'Creating', + /// 'CreateFailed', 'Updating', 'UpdateFailed', 'Deleting', + /// 'DeleteFailed', 'Enabling', 'EnableFailed', 'Disabling', + /// 'DisableFailed', 'Disabled' + /// Clustering policy - default is + /// OSSCluster. Specified at create time. Possible values include: + /// 'EnterpriseCluster', 'OSSCluster' + /// Redis eviction policy - default is + /// VolatileLRU. Possible values include: 'AllKeysLFU', 'AllKeysLRU', + /// 'AllKeysRandom', 'VolatileLRU', 'VolatileLFU', 'VolatileTTL', + /// 'VolatileRandom', 'NoEviction' + /// Optional set of redis modules to enable in + /// this database - modules can only be added at creation time. + public DatabaseUpdate(string clientProtocol = default(string), int? port = default(int?), string provisioningState = default(string), string resourceState = default(string), string clusteringPolicy = default(string), string evictionPolicy = default(string), IList modules = default(IList)) + { + ClientProtocol = clientProtocol; + Port = port; + ProvisioningState = provisioningState; + ResourceState = resourceState; + ClusteringPolicy = clusteringPolicy; + EvictionPolicy = evictionPolicy; + Modules = modules; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies whether redis clients can connect using + /// TLS-encrypted or plaintext redis protocols. Default is + /// TLS-encrypted. Possible values include: 'Encrypted', 'Plaintext' + /// + [JsonProperty(PropertyName = "properties.clientProtocol")] + public string ClientProtocol { get; set; } + + /// + /// Gets or sets TCP port of the database endpoint. Specified at create + /// time. Defaults to an available port. + /// + [JsonProperty(PropertyName = "properties.port")] + public int? Port { get; set; } + + /// + /// Gets current provisioning status of the database. Possible values + /// include: 'Succeeded', 'Failed', 'Canceled', 'Creating', 'Updating', + /// 'Deleting' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets current resource status of the database. Possible values + /// include: 'Running', 'Creating', 'CreateFailed', 'Updating', + /// 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', + /// 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.resourceState")] + public string ResourceState { get; private set; } + + /// + /// Gets or sets clustering policy - default is OSSCluster. Specified + /// at create time. Possible values include: 'EnterpriseCluster', + /// 'OSSCluster' + /// + [JsonProperty(PropertyName = "properties.clusteringPolicy")] + public string ClusteringPolicy { get; set; } + + /// + /// Gets or sets redis eviction policy - default is VolatileLRU. + /// Possible values include: 'AllKeysLFU', 'AllKeysLRU', + /// 'AllKeysRandom', 'VolatileLRU', 'VolatileLFU', 'VolatileTTL', + /// 'VolatileRandom', 'NoEviction' + /// + [JsonProperty(PropertyName = "properties.evictionPolicy")] + public string EvictionPolicy { get; set; } + + /// + /// Gets or sets optional set of redis modules to enable in this + /// database - modules can only be added at creation time. + /// + [JsonProperty(PropertyName = "properties.modules")] + public IList Modules { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorAdditionalInfo.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorAdditionalInfo.cs new file mode 100644 index 000000000000..609d2d4a2142 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorAdditionalInfo.cs @@ -0,0 +1,59 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The resource management error additional info. + /// + public partial class ErrorAdditionalInfo + { + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + public ErrorAdditionalInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + /// The additional info type. + /// The additional info. + public ErrorAdditionalInfo(string type = default(string), object info = default(object)) + { + Type = type; + Info = info; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the additional info type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets the additional info. + /// + [JsonProperty(PropertyName = "info")] + public object Info { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorDetail.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorDetail.cs new file mode 100644 index 000000000000..33ded6c853f7 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorDetail.cs @@ -0,0 +1,85 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The error detail. + /// + public partial class ErrorDetail + { + /// + /// Initializes a new instance of the ErrorDetail class. + /// + public ErrorDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorDetail class. + /// + /// The error code. + /// The error message. + /// The error target. + /// The error details. + /// The error additional info. + public ErrorDetail(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList), IList additionalInfo = default(IList)) + { + Code = code; + Message = message; + Target = target; + Details = details; + AdditionalInfo = additionalInfo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the error target. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; private set; } + + /// + /// Gets the error details. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; private set; } + + /// + /// Gets the error additional info. + /// + [JsonProperty(PropertyName = "additionalInfo")] + public IList AdditionalInfo { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponse.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..832d171bacfe --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponse.cs @@ -0,0 +1,56 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Error response + /// + /// + /// Common error response for all Azure Resource Manager APIs to return + /// error details for failed operations. (This also follows the OData error + /// response format.). + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// The error object. + public ErrorResponse(ErrorDetail error = default(ErrorDetail)) + { + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the error object. + /// + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponseException.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..5583c6534673 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,62 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// + public partial class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/EvictionPolicy.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/EvictionPolicy.cs new file mode 100644 index 000000000000..02beed25f814 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/EvictionPolicy.cs @@ -0,0 +1,28 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for EvictionPolicy. + /// + public static class EvictionPolicy + { + public const string AllKeysLFU = "AllKeysLFU"; + public const string AllKeysLRU = "AllKeysLRU"; + public const string AllKeysRandom = "AllKeysRandom"; + public const string VolatileLRU = "VolatileLRU"; + public const string VolatileLFU = "VolatileLFU"; + public const string VolatileTTL = "VolatileTTL"; + public const string VolatileRandom = "VolatileRandom"; + public const string NoEviction = "NoEviction"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs new file mode 100644 index 000000000000..ba03bcfbca43 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs @@ -0,0 +1,55 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Export an RDB file into a target database + /// + /// + /// Parameters for a Redis Enterprise export operation. + /// + public partial class ExportClusterParameters + { + /// + /// Initializes a new instance of the ExportClusterParameters class. + /// + public ExportClusterParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ExportClusterParameters class. + /// + /// SAS Uri for the target directory to export + /// to + public ExportClusterParameters(string sasUri) + { + SasUri = sasUri; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets SAS Uri for the target directory to export to + /// + [JsonProperty(PropertyName = "sasUri")] + public string SasUri { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs new file mode 100644 index 000000000000..30c366af6964 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs @@ -0,0 +1,55 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Import an RDB file into a target database + /// + /// + /// Parameters for a Redis Enterprise import operation. + /// + public partial class ImportClusterParameters + { + /// + /// Initializes a new instance of the ImportClusterParameters class. + /// + public ImportClusterParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ImportClusterParameters class. + /// + /// SAS Uri for the target blob to import + /// from + public ImportClusterParameters(string sasUri) + { + SasUri = sasUri; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets SAS Uri for the target blob to import from + /// + [JsonProperty(PropertyName = "sasUri")] + public string SasUri { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Module.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Module.cs new file mode 100644 index 000000000000..ac71ea2b1e2e --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Module.cs @@ -0,0 +1,75 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Module settings + /// + /// + /// Specifies configuration of a redis module + /// + public partial class Module + { + /// + /// Initializes a new instance of the Module class. + /// + public Module() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Module class. + /// + /// The name of the module, e.g. 'RedisBloom', + /// 'RediSearch', 'RedisTimeSeries' + /// Configuration options for the module, e.g. + /// 'ERROR_RATE 0.00 INITIAL_SIZE 400'. + /// The version of the module, e.g. + /// '1.0'. + public Module(string name, string args = default(string), string version = default(string)) + { + Name = name; + Args = args; + Version = version; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the module, e.g. 'RedisBloom', + /// 'RediSearch', 'RedisTimeSeries' + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets configuration options for the module, e.g. 'ERROR_RATE + /// 0.00 INITIAL_SIZE 400'. + /// + [JsonProperty(PropertyName = "args")] + public string Args { get; set; } + + /// + /// Gets the version of the module, e.g. '1.0'. + /// + [JsonProperty(PropertyName = "version")] + public string Version { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs new file mode 100644 index 000000000000..7459f0f5d4ba --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs @@ -0,0 +1,106 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Details of a REST API operation, returned from the Resource Provider + /// Operations API + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Operation class. + /// + /// The name of the operation, as per Resource-Based + /// Access Control (RBAC). Examples: + /// "Microsoft.Compute/virtualMachines/write", + /// "Microsoft.Compute/virtualMachines/capture/action" + /// Whether the operation applies to + /// data-plane. This is "true" for data-plane operations and "false" + /// for ARM/control-plane operations. + /// Localized display information for this + /// particular operation. + /// The intended executor of the operation; as in + /// Resource Based Access Control (RBAC) and audit logs UX. Default + /// value is "user,system". Possible values include: 'user', 'system', + /// 'user,system' + /// Enum. Indicates the action type. + /// "Internal" refers to actions that are for internal only APIs. + /// Possible values include: 'Internal' + public Operation(string name = default(string), bool? isDataAction = default(bool?), OperationDisplay display = default(OperationDisplay), string origin = default(string), string actionType = default(string)) + { + Name = name; + IsDataAction = isDataAction; + Display = display; + Origin = origin; + ActionType = actionType; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the name of the operation, as per Resource-Based Access + /// Control (RBAC). Examples: + /// "Microsoft.Compute/virtualMachines/write", + /// "Microsoft.Compute/virtualMachines/capture/action" + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets whether the operation applies to data-plane. This is "true" + /// for data-plane operations and "false" for ARM/control-plane + /// operations. + /// + [JsonProperty(PropertyName = "isDataAction")] + public bool? IsDataAction { get; private set; } + + /// + /// Gets or sets localized display information for this particular + /// operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + /// + /// Gets the intended executor of the operation; as in Resource Based + /// Access Control (RBAC) and audit logs UX. Default value is + /// "user,system". Possible values include: 'user', 'system', + /// 'user,system' + /// + [JsonProperty(PropertyName = "origin")] + public string Origin { get; private set; } + + /// + /// Gets enum. Indicates the action type. "Internal" refers to actions + /// that are for internal only APIs. Possible values include: + /// 'Internal' + /// + [JsonProperty(PropertyName = "actionType")] + public string ActionType { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationDisplay.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..a913f3bce776 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationDisplay.cs @@ -0,0 +1,89 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Localized display information for this particular operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// The localized friendly form of the resource + /// provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft + /// Compute". + /// The localized friendly name of the resource + /// type related to this operation. E.g. "Virtual Machines" or "Job + /// Schedule Collections". + /// The concise, localized friendly name for + /// the operation; suitable for dropdowns. E.g. "Create or Update + /// Virtual Machine", "Restart Virtual Machine". + /// The short, localized friendly description + /// of the operation; suitable for tool tips and detailed + /// views. + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + Description = description; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the localized friendly form of the resource provider name, + /// e.g. "Microsoft Monitoring Insights" or "Microsoft Compute". + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; private set; } + + /// + /// Gets the localized friendly name of the resource type related to + /// this operation. E.g. "Virtual Machines" or "Job Schedule + /// Collections". + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; private set; } + + /// + /// Gets the concise, localized friendly name for the operation; + /// suitable for dropdowns. E.g. "Create or Update Virtual Machine", + /// "Restart Virtual Machine". + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; private set; } + + /// + /// Gets the short, localized friendly description of the operation; + /// suitable for tool tips and detailed views. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationStatus.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationStatus.cs new file mode 100644 index 000000000000..1b738b0bc1fe --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/OperationStatus.cs @@ -0,0 +1,92 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The status of a long-running operation. + /// + public partial class OperationStatus + { + /// + /// Initializes a new instance of the OperationStatus class. + /// + public OperationStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationStatus class. + /// + /// The operation's unique id. + /// The operation's name. + /// The start time of the operation. + /// The end time of the operation. + /// The current status of the operation. + /// Error response describing why the operation + /// failed. + public OperationStatus(string id = default(string), string name = default(string), string startTime = default(string), string endTime = default(string), string status = default(string), ErrorResponse error = default(ErrorResponse)) + { + Id = id; + Name = name; + StartTime = startTime; + EndTime = endTime; + Status = status; + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the operation's unique id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the operation's name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the start time of the operation. + /// + [JsonProperty(PropertyName = "startTime")] + public string StartTime { get; set; } + + /// + /// Gets or sets the end time of the operation. + /// + [JsonProperty(PropertyName = "endTime")] + public string EndTime { get; set; } + + /// + /// Gets or sets the current status of the operation. + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets error response describing why the operation failed. + /// + [JsonProperty(PropertyName = "error")] + public ErrorResponse Error { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Origin.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Origin.cs new file mode 100644 index 000000000000..859f6a3542c8 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Origin.cs @@ -0,0 +1,23 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for Origin. + /// + public static class Origin + { + public const string User = "user"; + public const string System = "system"; + public const string Usersystem = "user,system"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page.cs new file mode 100644 index 000000000000..d329be92070e --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page.cs @@ -0,0 +1,53 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page1.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page1.cs new file mode 100644 index 000000000000..e392881736e5 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Page1.cs @@ -0,0 +1,53 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page1 : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpoint.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpoint.cs new file mode 100644 index 000000000000..c550ed8ff85c --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpoint.cs @@ -0,0 +1,51 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Private Endpoint resource. + /// + public partial class PrivateEndpoint + { + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + public PrivateEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + /// The ARM identifier for Private Endpoint + public PrivateEndpoint(string id = default(string)) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the ARM identifier for Private Endpoint + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnection.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnection.cs new file mode 100644 index 000000000000..2bd41733db9e --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnection.cs @@ -0,0 +1,85 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Private Endpoint Connection resource. + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateEndpointConnection : Resource + { + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + public PrivateEndpointConnection() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + /// A collection of + /// information about the state of the connection between service + /// consumer and provider. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// The resource of private end + /// point. + /// The provisioning state of the + /// private endpoint connection resource. Possible values include: + /// 'Succeeded', 'Creating', 'Deleting', 'Failed' + public PrivateEndpointConnection(PrivateLinkServiceConnectionState privateLinkServiceConnectionState, string id = default(string), string name = default(string), string type = default(string), PrivateEndpoint privateEndpoint = default(PrivateEndpoint), string provisioningState = default(string)) + : base(id, name, type) + { + PrivateEndpoint = privateEndpoint; + PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the resource of private end point. + /// + [JsonProperty(PropertyName = "properties.privateEndpoint")] + public PrivateEndpoint PrivateEndpoint { get; set; } + + /// + /// Gets or sets a collection of information about the state of the + /// connection between service consumer and provider. + /// + [JsonProperty(PropertyName = "properties.privateLinkServiceConnectionState")] + public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState { get; set; } + + /// + /// Gets or sets the provisioning state of the private endpoint + /// connection resource. Possible values include: 'Succeeded', + /// 'Creating', 'Deleting', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs new file mode 100644 index 000000000000..29cd08512704 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs @@ -0,0 +1,24 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for PrivateEndpointConnectionProvisioningState. + /// + public static class PrivateEndpointConnectionProvisioningState + { + public const string Succeeded = "Succeeded"; + public const string Creating = "Creating"; + public const string Deleting = "Deleting"; + public const string Failed = "Failed"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs new file mode 100644 index 000000000000..5b9820a053a8 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs @@ -0,0 +1,23 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for PrivateEndpointServiceConnectionStatus. + /// + public static class PrivateEndpointServiceConnectionStatus + { + public const string Pending = "Pending"; + public const string Approved = "Approved"; + public const string Rejected = "Rejected"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkResource.cs new file mode 100644 index 000000000000..10372f2c48c9 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkResource.cs @@ -0,0 +1,81 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A private link resource + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateLinkResource : Resource + { + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + public PrivateLinkResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// The private link resource group id. + /// The private link resource required + /// member names. + /// The private link resource Private + /// link DNS zone name. + public PrivateLinkResource(string id = default(string), string name = default(string), string type = default(string), string groupId = default(string), IList requiredMembers = default(IList), IList requiredZoneNames = default(IList)) + : base(id, name, type) + { + GroupId = groupId; + RequiredMembers = requiredMembers; + RequiredZoneNames = requiredZoneNames; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the private link resource group id. + /// + [JsonProperty(PropertyName = "properties.groupId")] + public string GroupId { get; private set; } + + /// + /// Gets the private link resource required member names. + /// + [JsonProperty(PropertyName = "properties.requiredMembers")] + public IList RequiredMembers { get; private set; } + + /// + /// Gets or sets the private link resource Private link DNS zone name. + /// + [JsonProperty(PropertyName = "properties.requiredZoneNames")] + public IList RequiredZoneNames { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkServiceConnectionState.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkServiceConnectionState.cs new file mode 100644 index 000000000000..a8827d40cf69 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/PrivateLinkServiceConnectionState.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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// A collection of information about the state of the connection between + /// service consumer and provider. + /// + public partial class PrivateLinkServiceConnectionState + { + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState + /// class. + /// + public PrivateLinkServiceConnectionState() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState + /// class. + /// + /// Indicates whether the connection has been + /// Approved/Rejected/Removed by the owner of the service. Possible + /// values include: 'Pending', 'Approved', 'Rejected' + /// The reason for approval/rejection of the + /// connection. + /// A message indicating if changes on + /// the service provider require any updates on the consumer. + public PrivateLinkServiceConnectionState(string status = default(string), string description = default(string), string actionsRequired = default(string)) + { + Status = status; + Description = description; + ActionsRequired = actionsRequired; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets indicates whether the connection has been + /// Approved/Rejected/Removed by the owner of the service. Possible + /// values include: 'Pending', 'Approved', 'Rejected' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets the reason for approval/rejection of the connection. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets a message indicating if changes on the service + /// provider require any updates on the consumer. + /// + [JsonProperty(PropertyName = "actionsRequired")] + public string ActionsRequired { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Protocol.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Protocol.cs new file mode 100644 index 000000000000..1354a01a1b30 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Protocol.cs @@ -0,0 +1,22 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for Protocol. + /// + public static class Protocol + { + public const string Encrypted = "Encrypted"; + public const string Plaintext = "Plaintext"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProvisioningState.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProvisioningState.cs new file mode 100644 index 000000000000..215561b07c35 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProvisioningState.cs @@ -0,0 +1,26 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for ProvisioningState. + /// + public static class ProvisioningState + { + public const string Succeeded = "Succeeded"; + public const string Failed = "Failed"; + public const string Canceled = "Canceled"; + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Deleting = "Deleting"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..484c8c42e2c7 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs @@ -0,0 +1,50 @@ +// +// 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.RedisEnterprise.Models +{ + using System.Linq; + + /// + /// The resource model definition for an Azure Resource Manager proxy + /// resource. It will have everything other than required location and tags + /// + public partial class ProxyResource : Resource + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + public ProxyResource(string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RegenerateKeyParameters.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RegenerateKeyParameters.cs new file mode 100644 index 000000000000..ccdc424f4835 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RegenerateKeyParameters.cs @@ -0,0 +1,56 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Regenerate access keys request + /// + /// + /// Specifies which access keys to reset to a new random value. + /// + public partial class RegenerateKeyParameters + { + /// + /// Initializes a new instance of the RegenerateKeyParameters class. + /// + public RegenerateKeyParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RegenerateKeyParameters class. + /// + /// Which access key to regenerate. Possible + /// values include: 'Primary', 'Secondary' + public RegenerateKeyParameters(AccessKeyType keyType) + { + KeyType = keyType; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets which access key to regenerate. Possible values + /// include: 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "keyType")] + public AccessKeyType KeyType { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs new file mode 100644 index 000000000000..5b68e0c05b9f --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs @@ -0,0 +1,76 @@ +// +// 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.RedisEnterprise.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// + public partial class Resource : IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Resource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + public Resource(string id = default(string), string name = default(string), string type = default(string)) + { + Id = id; + Name = name; + Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the name of the resource + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ResourceState.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ResourceState.cs new file mode 100644 index 000000000000..ec253351c7a8 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ResourceState.cs @@ -0,0 +1,32 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for ResourceState. + /// + public static class ResourceState + { + public const string Running = "Running"; + public const string Creating = "Creating"; + public const string CreateFailed = "CreateFailed"; + public const string Updating = "Updating"; + public const string UpdateFailed = "UpdateFailed"; + public const string Deleting = "Deleting"; + public const string DeleteFailed = "DeleteFailed"; + public const string Enabling = "Enabling"; + public const string EnableFailed = "EnableFailed"; + public const string Disabling = "Disabling"; + public const string DisableFailed = "DisableFailed"; + public const string Disabled = "Disabled"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Sku.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Sku.cs new file mode 100644 index 000000000000..94d6f20ec2e8 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Sku.cs @@ -0,0 +1,72 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// SKU parameters supplied to the create RedisEnterprise operation. + /// + public partial class Sku + { + /// + /// Initializes a new instance of the Sku class. + /// + public Sku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Sku class. + /// + /// The type of RedisEnterprise cluster to deploy. + /// Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.). + /// Possible values include: 'Enterprise_E10', 'Enterprise_E20', + /// 'Enterprise_E50', 'Enterprise_E100', 'EnterpriseFlash_F300', + /// 'EnterpriseFlash_F700', 'EnterpriseFlash_F1500' + /// The size of the RedisEnterprise cluster. + /// Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, + /// ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash + /// SKUs. + public Sku(string name, int? capacity = default(int?)) + { + Name = name; + Capacity = capacity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the type of RedisEnterprise cluster to deploy. + /// Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.). + /// Possible values include: 'Enterprise_E10', 'Enterprise_E20', + /// 'Enterprise_E50', 'Enterprise_E100', 'EnterpriseFlash_F300', + /// 'EnterpriseFlash_F700', 'EnterpriseFlash_F1500' + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the size of the RedisEnterprise cluster. Defaults to 2 + /// or 3 depending on SKU. Valid values are (2, 4, 6, ...) for + /// Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs. + /// + [JsonProperty(PropertyName = "capacity")] + public int? Capacity { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/SkuName.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/SkuName.cs new file mode 100644 index 000000000000..c273c7341c0c --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/SkuName.cs @@ -0,0 +1,27 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for SkuName. + /// + public static class SkuName + { + public const string EnterpriseE10 = "Enterprise_E10"; + public const string EnterpriseE20 = "Enterprise_E20"; + public const string EnterpriseE50 = "Enterprise_E50"; + public const string EnterpriseE100 = "Enterprise_E100"; + public const string EnterpriseFlashF300 = "EnterpriseFlash_F300"; + public const string EnterpriseFlashF700 = "EnterpriseFlash_F700"; + public const string EnterpriseFlashF1500 = "EnterpriseFlash_F1500"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..a7cf2b91af29 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs @@ -0,0 +1,70 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The resource model definition for an Azure Resource Manager tracked top + /// level resource + /// + public partial class TrackedResource : Resource + { + /// + /// Initializes a new instance of the TrackedResource class. + /// + public TrackedResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TrackedResource class. + /// + /// The geo-location where the resource + /// lives + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Resource tags. + public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + : base(id, name, type) + { + Tags = tags; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs new file mode 100644 index 000000000000..326509d6f72e --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs @@ -0,0 +1,392 @@ +// +// 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.RedisEnterprise +{ + 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; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// 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>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Cache/operations").ToString(); + 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; + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..e8748fccab7f --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsExtensions.cs @@ -0,0 +1,91 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..29730a832ea4 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs @@ -0,0 +1,875 @@ +// +// 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.RedisEnterprise +{ + 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; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + internal partial class PrivateEndpointConnectionsOperations : IServiceOperations, IPrivateEndpointConnectionsOperations + { + /// + /// Initializes a new instance of the PrivateEndpointConnectionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Lists all the private endpoint connections associated with the + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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>> ListWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + 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/redisEnterprise/{clusterName}/privateEndpointConnections").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _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; + } + + /// + /// Gets the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// 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> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetMethod", 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/redisEnterprise/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + _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; + } + + /// + /// Updates the state of the specified private endpoint connection associated + /// with the RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PutWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginPutWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, properties, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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/redisEnterprise/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + 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("DELETE"); + _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 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Updates the state of the specified private endpoint connection associated + /// with the RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// 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> BeginPutWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + if (properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "properties"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("properties", properties); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPut", 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/redisEnterprise/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + 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("PUT"); + _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; + if(properties != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(properties, 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) + { + 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 != 201) + { + 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 == 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); + } + return _result; + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs new file mode 100644 index 000000000000..b7279f3ee79c --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs @@ -0,0 +1,278 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PrivateEndpointConnectionsOperations. + /// + public static partial class PrivateEndpointConnectionsOperationsExtensions + { + /// + /// Lists all the private endpoint connections associated with the + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + public static IEnumerable List(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName) + { + return operations.ListAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists all the private endpoint connections associated with the + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + public static PrivateEndpointConnection GetMethod(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) + { + return operations.GetMethodAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The cancellation token. + /// + public static async Task GetMethodAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetMethodWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the state of the specified private endpoint connection associated + /// with the RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + public static PrivateEndpointConnection Put(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties) + { + return operations.PutAsync(resourceGroupName, clusterName, privateEndpointConnectionName, properties).GetAwaiter().GetResult(); + } + + /// + /// Updates the state of the specified private endpoint connection associated + /// with the RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The cancellation token. + /// + public static async Task PutAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PutWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, properties, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + public static void Delete(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) + { + operations.DeleteAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified private endpoint connection associated with the + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Updates the state of the specified private endpoint connection associated + /// with the RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + public static PrivateEndpointConnection BeginPut(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties) + { + return operations.BeginPutAsync(resourceGroupName, clusterName, privateEndpointConnectionName, properties).GetAwaiter().GetResult(); + } + + /// + /// Updates the state of the specified private endpoint connection associated + /// with the RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPutAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection properties, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginPutWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, properties, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..6cb1db26b18c --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs @@ -0,0 +1,246 @@ +// +// 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.RedisEnterprise +{ + 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; + + /// + /// PrivateLinkResourcesOperations operations. + /// + internal partial class PrivateLinkResourcesOperations : IServiceOperations, IPrivateLinkResourcesOperations + { + /// + /// Initializes a new instance of the PrivateLinkResourcesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateLinkResourcesOperations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Gets the private link resources that need to be created for a + /// RedisEnterprise cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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>> ListByRedisEnterpriseCacheWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByRedisEnterpriseCache", 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/redisEnterprise/{clusterName}/privateLinkResources").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _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/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs new file mode 100644 index 000000000000..593fbca79466 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs @@ -0,0 +1,69 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PrivateLinkResourcesOperations. + /// + public static partial class PrivateLinkResourcesOperationsExtensions + { + /// + /// Gets the private link resources that need to be created for a + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + public static IEnumerable ListByRedisEnterpriseCache(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName) + { + return operations.ListByRedisEnterpriseCacheAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the private link resources that need to be created for a + /// RedisEnterprise cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByRedisEnterpriseCacheAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByRedisEnterpriseCacheWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs new file mode 100644 index 000000000000..4e7270332a52 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs @@ -0,0 +1,948 @@ +// +// 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.RedisEnterprise +{ + 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; + + /// + /// RedisEnterpriseDatabaseOperations operations. + /// + internal partial class RedisEnterpriseDatabaseOperations : IServiceOperations, IRedisEnterpriseDatabaseOperations + { + /// + /// Initializes a new instance of the RedisEnterpriseDatabaseOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal RedisEnterpriseDatabaseOperations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("cancellationToken", cancellationToken); + 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/listKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// 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> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + RegenerateKeyParameters parameters = new RegenerateKeyParameters(); + parameters.KeyType = keyType; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRegenerateKey", 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/redisEnterprise/{clusterName}/databases/{databaseName}/regenerateKey").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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; + } + + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (sasUri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sasUri"); + } + ImportClusterParameters parameters = new ImportClusterParameters(); + if (sasUri != null) + { + parameters.SasUri = sasUri; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImport", 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/redisEnterprise/{clusterName}/databases/{databaseName}/import").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (sasUri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sasUri"); + } + ExportClusterParameters parameters = new ExportClusterParameters(); + if (sasUri != null) + { + parameters.SasUri = sasUri; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginExport", 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/redisEnterprise/{clusterName}/databases/{databaseName}/export").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs new file mode 100644 index 000000000000..dc0833c5abf4 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs @@ -0,0 +1,375 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for RedisEnterpriseDatabaseOperations. + /// + public static partial class RedisEnterpriseDatabaseOperationsExtensions + { + /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + public static AccessKeys ListKeys(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName) + { + return operations.ListKeysAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task ListKeysAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + public static AccessKeys RegenerateKey(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType) + { + return operations.RegenerateKeyAsync(resourceGroupName, clusterName, databaseName, keyType).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeyAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + public static void Import(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.ImportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// The cancellation token. + /// + public static async Task ImportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + public static void Export(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.ExportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// The cancellation token. + /// + public static async Task ExportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + public static AccessKeys BeginRegenerateKey(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType) + { + return operations.BeginRegenerateKeyAsync(resourceGroupName, clusterName, databaseName, keyType).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The cancellation token. + /// + public static async Task BeginRegenerateKeyAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + public static void BeginImport(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.BeginImportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + public static void BeginExport(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.BeginExportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// The cancellation token. + /// + public static async Task BeginExportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs new file mode 100644 index 000000000000..508d9ff5003a --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs @@ -0,0 +1,1608 @@ +// +// 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.RedisEnterprise +{ + 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; + + /// + /// RedisEnterpriseOperations operations. + /// + internal partial class RedisEnterpriseOperations : IServiceOperations, IRedisEnterpriseOperations + { + /// + /// Initializes a new instance of the RedisEnterpriseOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal RedisEnterpriseOperations(redisenterpriseClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the redisenterpriseClient + /// + public redisenterpriseClient Client { get; private set; } + + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets information about a RedisEnterprise cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetMethod", 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/redisEnterprise/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _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; + } + + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, 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"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + 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/redisEnterprise").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _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; + } + + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// 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>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + 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("cancellationToken", cancellationToken); + 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}/providers/Microsoft.Cache/redisEnterprise").ToString(); + _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; + } + + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + 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/redisEnterprise/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _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("PUT"); + _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; + 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) + { + 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 && (int)_statusCode != 201) + { + 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); + } + } + // 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); + } + return _result; + } + + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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/redisEnterprise/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _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("PATCH"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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; + } + + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/redisEnterprise/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _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("DELETE"); + _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 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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; + } + + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// The NextLink from the previous successful call to List 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>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + 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/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs new file mode 100644 index 000000000000..084966fb065f --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs @@ -0,0 +1,457 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for RedisEnterpriseOperations. + /// + public static partial class RedisEnterpriseOperationsExtensions + { + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise operation. + /// + public static Cluster Create(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, Cluster parameters) + { + return operations.CreateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, Cluster parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise operation. + /// + public static Cluster Update(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, ClusterUpdate parameters) + { + return operations.UpdateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise operation. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, ClusterUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + public static void Delete(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName) + { + operations.DeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets information about a RedisEnterprise cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + public static Cluster GetMethod(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName) + { + return operations.GetMethodAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets information about a RedisEnterprise cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The cancellation token. + /// + public static async Task GetMethodAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetMethodWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + public static IPage ListByResourceGroup(this IRedisEnterpriseOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IRedisEnterpriseOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IRedisEnterpriseOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise operation. + /// + public static Cluster BeginCreate(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, Cluster parameters) + { + return operations.BeginCreateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an existing (overwrite/recreate, with potential + /// downtime) cache cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Create RedisEnterprise operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, Cluster parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise operation. + /// + public static Cluster BeginUpdate(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, ClusterUpdate parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates an existing RedisEnterprise cluster + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// Parameters supplied to the Update RedisEnterprise operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, ClusterUpdate parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + public static void BeginDelete(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName) + { + operations.BeginDeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a RedisEnterprise cache cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IRedisEnterpriseOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all RedisEnterprise clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IRedisEnterpriseOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IRedisEnterpriseOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all RedisEnterprise clusters in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IRedisEnterpriseOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs new file mode 100644 index 000000000000..617cd4f07b50 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs @@ -0,0 +1,33 @@ + +// +// 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.RedisEnterprise +{ + using System; + using System.Collections.Generic; + using System.Linq; + + internal static partial class SdkInfo + { + public static IEnumerable> ApiInfo_redisEnterprise + { + get + { + return new Tuple[] + { + new Tuple("Cache", "Databases", "2020-10-01-preview"), + new Tuple("Cache", "Get", "2020-10-01-preview"), + new Tuple("Cache", "Operations", "2020-10-01-preview"), + new Tuple("Cache", "PrivateEndpointConnections", "2020-10-01-preview"), + new Tuple("Cache", "PrivateLinkResources", "2020-10-01-preview"), + new Tuple("Cache", "RedisEnterprise", "2020-10-01-preview"), + new Tuple("Cache", "RedisEnterpriseDatabase", "2020-10-01-preview"), + }.AsEnumerable(); + } + } + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs new file mode 100644 index 000000000000..aeeeded1afd1 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs @@ -0,0 +1,398 @@ +// +// 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.RedisEnterprise +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + + /// + /// REST API for managing Redis Enterprise resources in Azure. + /// + public partial class redisenterpriseClient : ServiceClient, IredisenterpriseClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Gets subscription credentials which uniquely identify the Microsoft Azure + /// subscription. The subscription ID forms part of the URI for every service + /// call. + /// + public string SubscriptionId { get; set; } + + /// + /// Client Api Version. + /// + public string ApiVersion { get; private set; } + + /// + /// The preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// The retry timeout in seconds for Long Running Operations. Default value is + /// 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// Whether a unique x-ms-client-request-id should be generated. When set to + /// true a unique x-ms-client-request-id value is generated and included in + /// each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + + /// + /// Gets the IGetOperations. + /// + public virtual IGetOperations Get { get; private set; } + + /// + /// Gets the IRedisEnterpriseOperations. + /// + public virtual IRedisEnterpriseOperations RedisEnterprise { get; private set; } + + /// + /// Gets the IDatabasesOperations. + /// + public virtual IDatabasesOperations Databases { get; private set; } + + /// + /// Gets the IRedisEnterpriseDatabaseOperations. + /// + public virtual IRedisEnterpriseDatabaseOperations RedisEnterpriseDatabase { get; private set; } + + /// + /// Gets the IPrivateEndpointConnectionsOperations. + /// + public virtual IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; private set; } + + /// + /// Gets the IPrivateLinkResourcesOperations. + /// + public virtual IPrivateLinkResourcesOperations PrivateLinkResources { get; private set; } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling redisenterpriseClient.Dispose(). False: will not dispose provided httpClient + protected redisenterpriseClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + Initialize(); + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected redisenterpriseClient(params DelegatingHandler[] handlers) : base(handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected redisenterpriseClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected redisenterpriseClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected redisenterpriseClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public redisenterpriseClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling redisenterpriseClient.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public redisenterpriseClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public redisenterpriseClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the redisenterpriseClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + Operations = new Operations(this); + Get = new GetOperations(this); + RedisEnterprise = new RedisEnterpriseOperations(this); + Databases = new DatabasesOperations(this); + RedisEnterpriseDatabase = new RedisEnterpriseDatabaseOperations(this); + PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); + PrivateLinkResources = new PrivateLinkResourcesOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2020-10-01-preview"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj new file mode 100644 index 000000000000..99f5e85a5804 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj @@ -0,0 +1,21 @@ + + + + + + + Microsoft.Azure.Management.RedisEnterprise + Provides redis enterprise cache management capabilities for Microsoft Azure. + 1.0.0-preview + Microsoft.Azure.Management.RedisEnterprise + Microsoft Azure Redis Enterprise Cache management;Redis Enterprise Management; + Initial release. + + + $(SdkTargetFx) + + + + + + diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..d03532819ebf --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Redis Enterprise Cache Management Library")] +[assembly: AssemblyDescription("Provides Microsoft Azure redis enterprise cache management operations.")] + +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] + +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Microsoft Azure .NET SDK")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/generate.ps1 b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/generate.ps1 new file mode 100644 index 000000000000..590271f646e1 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/generate.ps1 @@ -0,0 +1 @@ +Start-AutoRestCodeGeneration -ResourceProvider "redisenterprise/resource-manager" -AutoRestVersion "v2" \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs new file mode 100644 index 000000000000..6449a5f81430 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +using System; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace AzureRedisEnterpriseCache.Tests +{ + public class DummyResponseDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public DummyResponseDelegatingHandler(HttpResponseMessage response) + { + _response = response; + } + +#pragma warning disable 1998 + protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + return _response; + } +#pragma warning restore 1998 + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj new file mode 100644 index 000000000000..eb8d2caf96d9 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj @@ -0,0 +1,27 @@ + + + + RedisEnterpriseCache.Tests + AzureRedisEnterpriseCache.Tests Class Library + RedisEnterpriseCache.Tests + 1.0.0 + true + + + + + + + + + + + + PreserveNewest + + + + + + + \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Properties/AssemblyInfo.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..6436cff4ce41 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Properties/AssemblyInfo.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("AzureRedisEnterpriseCache.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyProduct("AzureRedisEnterpriseCache.Tests")] +[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("57B04777-02CC-47BF-87F7-9E95BDA2D1CD")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs new file mode 100644 index 000000000000..24e37625db44 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using AzureRedisEnterpriseCache.Tests.ScenarioTests; +using Microsoft.Azure.Management.RedisEnterprise; +using Microsoft.Azure.Management.RedisEnterprise.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System.Collections.Generic; +using System; +using Xunit; + +namespace AzureRedisEnterpriseCache.Tests +{ + public class BeginCreateFunctionalTests : TestBase + { + [Fact] + public void BeginCreateFunctionalTest() + { + using (var context = MockContext.Start(this.GetType())) + { + var _redisEnterpriseCacheManagementHelper = new RedisEnterpriseCacheManagementHelper(this, context); + _redisEnterpriseCacheManagementHelper.TryRegisterSubscriptionForResource(); + + var resourceGroupName = TestUtilities.GenerateName("RedisEnterpriseBegin"); + var redisEnterpriseCacheName = TestUtilities.GenerateName("RedisEnterpriseBegin"); + var databaseName = "default"; + + var _client = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(this, context); + _redisEnterpriseCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisEnterpriseCacheManagementHelper.Location); + var response = _client.RedisEnterprise.BeginCreate(resourceGroupName, redisEnterpriseCacheName, + parameters: new Cluster + { + Location = RedisEnterpriseCacheManagementHelper.Location, + Sku = new Sku() + { + Name = SkuName.EnterpriseE10, + Capacity = 2 + }, + MinimumTlsVersion = "1.2", + Zones = new List { "1", "2", "3" }, + }); + + Assert.Contains(redisEnterpriseCacheName, response.Id); + Assert.Equal(RedisEnterpriseCacheManagementHelper.Location, response.Location); + Assert.Equal(redisEnterpriseCacheName, response.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise", response.Type); + Assert.Equal(ProvisioningState.Creating, response.ProvisioningState, ignoreCase: true); + Assert.Equal(ResourceState.Creating, response.ResourceState, ignoreCase: true); + Assert.Equal(SkuName.EnterpriseE10, response.Sku.Name); + Assert.Equal(2, response.Sku.Capacity); + + for (int i = 0; i < 60; i++) + { + response = _client.RedisEnterprise.GetMethod(resourceGroupName, redisEnterpriseCacheName); + if (ProvisioningState.Succeeded.Equals(response.ProvisioningState, StringComparison.OrdinalIgnoreCase)) + { + break; + } + TestUtilities.Wait(new TimeSpan(0, 0, 30)); + } + Assert.Equal(ResourceState.Running, response.ResourceState, ignoreCase: true); + Assert.Equal(3, response.Zones.Count); + + var responseDatabase = _client.Databases.BeginCreate(resourceGroupName, redisEnterpriseCacheName, databaseName, + parameters: new Database + { + ClientProtocol = Protocol.Encrypted, + ClusteringPolicy = ClusteringPolicy.OSSCluster, + EvictionPolicy = EvictionPolicy.NoEviction, + Modules = new List() + { + new Module(name: "RedisBloom", args: "ERROR_RATE 0.00 INITIAL_SIZE 400"), + new Module(name: "RedisTimeSeries", args: "RETENTION_POLICY 20"), + new Module(name: "RediSearch") + }, + }); + + Assert.Contains(databaseName, responseDatabase.Id); + Assert.Equal(databaseName, responseDatabase.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise/databases", responseDatabase.Type); + Assert.Equal(ProvisioningState.Succeeded, responseDatabase.ProvisioningState, ignoreCase: true); + Assert.Equal(ResourceState.Running, responseDatabase.ResourceState, ignoreCase: true); + Assert.Equal(Protocol.Encrypted, responseDatabase.ClientProtocol); + Assert.Equal(ClusteringPolicy.OSSCluster, responseDatabase.ClusteringPolicy); + Assert.Equal(EvictionPolicy.NoEviction, responseDatabase.EvictionPolicy); + Assert.Equal(3, responseDatabase.Modules.Count); + + _client.RedisEnterprise.Delete(resourceGroupName: resourceGroupName, clusterName: redisEnterpriseCacheName); + } + } + } +} + diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs new file mode 100644 index 000000000000..135e5b5b42ca --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs @@ -0,0 +1,95 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using AzureRedisEnterpriseCache.Tests.ScenarioTests; +using Microsoft.Azure.Management.RedisEnterprise; +using Microsoft.Azure.Management.RedisEnterprise.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System.Collections.Generic; +using System; +using Xunit; +using Microsoft.Azure.Management.ResourceManager; + +namespace AzureRedisEnterpriseCache.Tests +{ + public class CreateUpdateDeleteFunctionalTests : TestBase, IClassFixture + { + private TestsFixture fixture; + + public CreateUpdateDeleteFunctionalTests(TestsFixture data) + { + fixture = data; + } + + [Fact] + public void CreateUpdateDeleteTest() + { + using (var context = MockContext.Start(this.GetType())) + { + var _client = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(this, context); + + var responseCreate = _client.RedisEnterprise.Create(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, + parameters: new Cluster + { + Location = RedisEnterpriseCacheManagementHelper.Location, + Sku = new Sku() + { + Name = SkuName.EnterpriseFlashF300, + Capacity = 3 + }, + Zones = new List { "1", "2", "3" }, + }); + + Assert.Contains(fixture.RedisEnterpriseCacheName, responseCreate.Id); + Assert.Equal(RedisEnterpriseCacheManagementHelper.Location, responseCreate.Location); + Assert.Equal(fixture.RedisEnterpriseCacheName, responseCreate.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise", responseCreate.Type); + Assert.Equal(ProvisioningState.Succeeded, responseCreate.ProvisioningState, ignoreCase: true); + Assert.Equal(ResourceState.Running, responseCreate.ResourceState, ignoreCase: true); + Assert.Equal(SkuName.EnterpriseFlashF300, responseCreate.Sku.Name); + Assert.Equal(3, responseCreate.Sku.Capacity); + Assert.Equal(3, responseCreate.Zones.Count); + Assert.Equal(0, responseCreate.PrivateEndpointConnections.Count); + Assert.Equal(0, responseCreate.Tags.Count); + + var responseCreateDatabase = _client.Databases.Create(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, databaseName: fixture.DatabaseName, + parameters: new Database + { + ClientProtocol = Protocol.Plaintext, + ClusteringPolicy = ClusteringPolicy.EnterpriseCluster, + EvictionPolicy = EvictionPolicy.VolatileLRU, + }); + + Assert.Contains(fixture.DatabaseName, responseCreateDatabase.Id); + Assert.Equal(fixture.DatabaseName, responseCreateDatabase.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise/databases", responseCreateDatabase.Type); + Assert.Equal(ProvisioningState.Succeeded, responseCreateDatabase.ProvisioningState, ignoreCase: true); + Assert.Equal(ResourceState.Running, responseCreateDatabase.ResourceState, ignoreCase: true); + Assert.Equal(Protocol.Plaintext, responseCreateDatabase.ClientProtocol); + Assert.Equal(ClusteringPolicy.EnterpriseCluster, responseCreateDatabase.ClusteringPolicy); + Assert.Equal(EvictionPolicy.VolatileLRU, responseCreateDatabase.EvictionPolicy); + + // Database update operations are not currently supported + /* + var responseUpdateDatabase = _client.Databases.Update(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, databaseName: fixture.DatabaseName, + parameters: new DatabaseUpdate + { + ClientProtocol = Protocol.Encrypted, + }); + + Assert.Contains(fixture.DatabaseName, responseUpdateDatabase.Id); + Assert.Equal(fixture.DatabaseName, responseUpdateDatabase.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise/databases", responseUpdateDatabase.Type); + Assert.Equal(ProvisioningState.Succeeded, responseUpdateDatabase.ProvisioningState, ignoreCase: true); + Assert.Equal(ResourceState.Running, responseUpdateDatabase.ResourceState, ignoreCase: true); + Assert.Equal(Protocol.Encrypted, responseUpdateDatabase.ClientProtocol); + Assert.Equal(ClusteringPolicy.EnterpriseCluster, responseUpdateDatabase.ClusteringPolicy); + Assert.Equal(EvictionPolicy.VolatileLRU, responseUpdateDatabase.EvictionPolicy); + */ + + _client.RedisEnterprise.Delete(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName); + } + } + } +} + diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs new file mode 100644 index 000000000000..9d4dffde03be --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs @@ -0,0 +1,96 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using AzureRedisEnterpriseCache.Tests.ScenarioTests; +using Microsoft.Azure.Management.RedisEnterprise; +using Microsoft.Azure.Management.RedisEnterprise.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + +namespace AzureRedisEnterpriseCache.Tests +{ + public class RedisEnterpriseCacheManagementHelper + { + public static string Location = "East US"; + public static string SecondaryLocation = "West US"; + + private ResourceManagementClient _client; + private MockContext _context; + private TestBase _testBase; + + public RedisEnterpriseCacheManagementHelper(TestBase testBase, MockContext context) + { + _client = RedisEnterpriseCacheManagementTestUtilities.GetResourceManagementClient(testBase, context); + _testBase = testBase; + _context = context; + } + + public void TryRegisterSubscriptionForResource(string providerName = "Microsoft.Cache") + { + var reg = _client.Providers.Register(providerName); + ThrowIfTrue(reg == null, "_client.Providers.Register returned null."); + + var resultAfterRegister = _client.Providers.Get(providerName); + ThrowIfTrue(resultAfterRegister == null, "_client.Providers.Get returned null."); + ThrowIfTrue(string.IsNullOrEmpty(resultAfterRegister.Id), "Provider.Id is null or empty."); + ThrowIfTrue(resultAfterRegister.ResourceTypes == null || resultAfterRegister.ResourceTypes.Count == 0, "Provider.ResourceTypes is empty."); + ThrowIfTrue(resultAfterRegister.ResourceTypes[0].Locations == null || resultAfterRegister.ResourceTypes[0].Locations.Count == 0, "Provider.ResourceTypes[0].Locations is empty."); + } + + public void TryCreateResourceGroup(string resourceGroupName, string location) + { + ResourceGroup result = _client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location }); + var newlyCreatedGroup = _client.ResourceGroups.Get(resourceGroupName); + ThrowIfTrue(newlyCreatedGroup == null, "_client.ResourceGroups.Get returned null."); + ThrowIfTrue(!resourceGroupName.Equals(newlyCreatedGroup.Name), string.Format("resourceGroupName is not equal to {0}", resourceGroupName)); + } + + public void DeleteResourceGroup(string resourceGroupName) + { + _client.ResourceGroups.Delete(resourceGroupName); + } + + public void TryCreatingCache(string resourceGroupName, string cacheName, string location) + { + var redisEnterpriseClient = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(_testBase, _context); + var createResponse = redisEnterpriseClient.RedisEnterprise.Create(resourceGroupName: resourceGroupName, clusterName: cacheName, + parameters: new Cluster + { + Location = location, + Sku = new Microsoft.Azure.Management.RedisEnterprise.Models.Sku() + { + Name = SkuName.EnterpriseE20, + Capacity = 2 + } + }); + + Cluster response = redisEnterpriseClient.RedisEnterprise.GetMethod(resourceGroupName: resourceGroupName, clusterName: cacheName); + ThrowIfTrue(!response.Id.Contains(cacheName), "Cache name not found inside Id."); + ThrowIfTrue(!response.Name.Equals(cacheName), string.Format("Cache name is not equal to {0}", cacheName)); + ThrowIfTrue(!response.HostName.Contains(cacheName), "Cache name not found inside host name."); + + // wait for maximum 30 minutes for cache to create + for (int i = 0; i < 60; i++) + { + TestUtilities.Wait(new TimeSpan(0, 0, 30)); + Cluster responseGet = redisEnterpriseClient.RedisEnterprise.GetMethod(resourceGroupName: resourceGroupName, clusterName: cacheName); + if ("succeeded".Equals(responseGet.ProvisioningState, StringComparison.OrdinalIgnoreCase)) + { + break; + } + ThrowIfTrue(i == 60, "Cache is not in succeeded state even after 30 min."); + } + } + + private void ThrowIfTrue(bool condition, string message) + { + if (condition) + { + throw new Exception(message); + } + } + } +} + diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs new file mode 100644 index 000000000000..28c40258f854 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.RedisEnterprise; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + +namespace AzureRedisEnterpriseCache.Tests.ScenarioTests +{ + public static class RedisEnterpriseCacheManagementTestUtilities + { + /// + /// Default constructor for management clients, using the TestSupport Infrastructure + /// + /// the test class + /// A redis cache management client, created from the current context (environment variables) + public static redisenterpriseClient GetRedisEnterpriseManagementClient(this TestBase testBase, MockContext context) + { + return context.GetServiceClient(); + } + + /// + /// Default constructor for management clients, using the TestSupport Infrastructure + /// + /// the test class + /// A resource management client, created from the current context (environment variables) + public static ResourceManagementClient GetResourceManagementClient(this TestBase testBase, MockContext context) + { + return context.GetServiceClient(); + } + } +} + diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs new file mode 100644 index 000000000000..0a87e8651817 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.RedisEnterprise; +using Microsoft.Azure.Management.RedisEnterprise.Models; +using Microsoft.Azure.Test; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace AzureRedisEnterpriseCache.Tests +{ + public class TestsFixture : TestBase, IDisposable + { + public string ResourceGroupName { set; get; } + public string RedisEnterpriseCacheName { set; get; } + public string DatabaseName { set; get; } + + private RedisEnterpriseCacheManagementHelper _redisEnterpriseCacheManagementHelper; + private MockContext _context = null; + + public TestsFixture() + { + _context = new MockContext(); + MockContext.Start(this.GetType(), ".ctor"); + try + { + _redisEnterpriseCacheManagementHelper = new RedisEnterpriseCacheManagementHelper(this, _context); + _redisEnterpriseCacheManagementHelper.TryRegisterSubscriptionForResource(); + + ResourceGroupName = TestUtilities.GenerateName("RedisEnterpriseCreateUpdate"); + RedisEnterpriseCacheName = TestUtilities.GenerateName("RedisEnterpriseCreateUpdate"); + DatabaseName = "default"; + _redisEnterpriseCacheManagementHelper.TryCreateResourceGroup(ResourceGroupName, RedisEnterpriseCacheManagementHelper.Location); + } + catch (Exception) + { + Cleanup(); + throw; + } + finally + { + HttpMockServer.Flush(); + } + + } + + public void Dispose() + { + Cleanup(); + } + + private void Cleanup() + { + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + HttpMockServer.Initialize(this.GetType(), ".cleanup"); + } + if (_context != null) + { + _context.Dispose(); + _context = null; + } + } + } +} + diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs new file mode 100644 index 000000000000..871d38646464 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +using Microsoft.Azure; +using Microsoft.Azure.Management.RedisEnterprise; +using Microsoft.Rest; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Net; +using System.Net.Http; +using System.Text; +using System.Threading.Tasks; + +namespace AzureRedisEnterpriseCache.Tests +{ + public static class Utility + { + public static redisenterpriseClient GetRedisEnterpriseClient(string responseString, string requestIdHeader, HttpStatusCode statusCode) + { + var httpResponse = new HttpResponseMessage(); + httpResponse.Content = new StreamContent(GenerateStreamFromString(responseString)); + if (!String.IsNullOrEmpty(requestIdHeader)) + { + httpResponse.Headers.Add("x-ms-request-id", requestIdHeader); + } + httpResponse.StatusCode = statusCode; + + var token = new TokenCredentials(Guid.NewGuid().ToString(), "abc123"); + redisenterpriseClient client = new redisenterpriseClient(token, new DummyResponseDelegatingHandler(httpResponse)); + client.SubscriptionId = "e311648e-a318-4a16-836e-f4a91cc73e9b"; + client.LongRunningOperationRetryTimeout = 0; + return client; + } + + private static Stream GenerateStreamFromString(string source) + { + MemoryStream stream = new MemoryStream(); + StreamWriter writer = new StreamWriter(stream); + writer.Write(source); + writer.Flush(); + stream.Position = 0; + return stream; + } + } +} From 7d9da23aa937ee82939109c4b48e3cc8b67c6dac Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Mon, 9 Nov 2020 16:55:02 -0800 Subject: [PATCH 2/8] Add SessionRecords from successful tests. --- .../BeginCreateFunctionalTest.json | 3211 +++++++++++++++++ .../CreateUpdateDeleteTest.json | 2210 ++++++++++++ .../SessionRecords/TestsFixture/.ctor.json | 259 ++ 3 files changed, 5680 insertions(+) create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json new file mode 100644 index 000000000000..1c726d7b451f --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json @@ -0,0 +1,3211 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a66b74c-83d7-4de9-9289-cdb9d16f1266" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "abfaf396-9e65-42ef-a75e-24b48c99bca5" + ], + "x-ms-correlation-request-id": [ + "abfaf396-9e65-42ef-a75e-24b48c99bca5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001458Z:abfaf396-9e65-42ef-a75e-24b48c99bca5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:14:57 GMT" + ], + "Content-Length": [ + "11262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6aa938f7-7e9a-41cd-9d27-b63a807f182b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "b9b072f1-1e43-4719-b0b4-d2b29495cfd5" + ], + "x-ms-correlation-request-id": [ + "b9b072f1-1e43-4719-b0b4-d2b29495cfd5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001458Z:b9b072f1-1e43-4719-b0b4-d2b29495cfd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:14:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "11262" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin9491?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d30060b1-fa89-4f53-b911-613cf73fca94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "5358632f-253b-43e1-84f5-0c01f73164a6" + ], + "x-ms-correlation-request-id": [ + "5358632f-253b-43e1-84f5-0c01f73164a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001459Z:5358632f-253b-43e1-84f5-0c01f73164a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:14:59 GMT" + ], + "Content-Length": [ + "201" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491\",\r\n \"name\": \"RedisEnterpriseBegin9491\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin9491?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3158787b-f4e4-4051-9336-efd20e5e39d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "92814051-1d46-4345-97e1-f36b4db6ca9a" + ], + "x-ms-correlation-request-id": [ + "92814051-1d46-4345-97e1-f36b4db6ca9a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001459Z:92814051-1d46-4345-97e1-f36b4db6ca9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:14:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "201" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491\",\r\n \"name\": \"RedisEnterpriseBegin9491\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a49077e-4f7f-480c-ac95-f79c0a40953b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "203" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3cb09f05-1ec5-497b-b879-52ebb45f66b1?api-version=2020-10-01-preview" + ], + "x-ms-request-id": [ + "5c772ed8-6772-4a2b-a2ee-12e1d94d4dbd" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "eced7181-10d3-4047-894f-b55de45ff833" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001503Z:eced7181-10d3-4047-894f-b55de45ff833" + ], + "Date": [ + "Tue, 10 Nov 2020 00:15:02 GMT" + ], + "Content-Length": [ + "515" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12f84310-1141-4879-9dd8-696dde82ccc6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "085fc98e-5998-450d-a04f-6bd76b7d0967" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "6be6ea77-ee57-440b-bdba-1caeca30d4c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001503Z:6be6ea77-ee57-440b-bdba-1caeca30d4c3" + ], + "Date": [ + "Tue, 10 Nov 2020 00:15:03 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7394671-9173-41c2-a44c-2f3094a3d968" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d1037ce4-bbaa-46d2-8706-5112ab92d828" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "762833c1-4edb-4478-a6c8-8a3c31c57e5f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001533Z:762833c1-4edb-4478-a6c8-8a3c31c57e5f" + ], + "Date": [ + "Tue, 10 Nov 2020 00:15:32 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "551107f4-bfcd-4852-9672-ff3ee5113329" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fe205a57-e6b2-480f-a9c8-73cccfa3bbbf" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "337d3292-8de2-4e71-aaac-7fe497da51ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001603Z:337d3292-8de2-4e71-aaac-7fe497da51ea" + ], + "Date": [ + "Tue, 10 Nov 2020 00:16:02 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6536504b-4d66-46fd-b02f-ffa204030b69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f1926609-8ed0-4c8d-82d0-634934d500e9" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "bae5d1c6-864e-47af-a5c1-6173f2448136" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001633Z:bae5d1c6-864e-47af-a5c1-6173f2448136" + ], + "Date": [ + "Tue, 10 Nov 2020 00:16:33 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cb21247-96e0-462c-a6d5-6a08b56fe71f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3d8f3121-3056-4bfc-b94c-d64532481699" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "5af32c1e-ab1a-406e-b991-e43492648e0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001703Z:5af32c1e-ab1a-406e-b991-e43492648e0a" + ], + "Date": [ + "Tue, 10 Nov 2020 00:17:03 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e5c02a3-26b7-4446-b35c-60819bb02847" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "afcc3942-2bbd-449e-b926-2b37fe9e06c7" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "18967df5-ac0f-438d-9cae-850e4facb3c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001733Z:18967df5-ac0f-438d-9cae-850e4facb3c3" + ], + "Date": [ + "Tue, 10 Nov 2020 00:17:32 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8144b85-9471-40a6-9510-d07108d185c7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "071b68ce-50d5-44ac-9489-960ad4074172" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "7fa0794c-5680-4f66-8735-cae8fedff1d5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001803Z:7fa0794c-5680-4f66-8735-cae8fedff1d5" + ], + "Date": [ + "Tue, 10 Nov 2020 00:18:03 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49a6b833-210b-4fed-9f85-186f03eab7fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c70cd27e-4bfd-49a9-977b-3b591ba01264" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "25b898ba-c3d6-44a7-a3b6-b77a243c605b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001834Z:25b898ba-c3d6-44a7-a3b6-b77a243c605b" + ], + "Date": [ + "Tue, 10 Nov 2020 00:18:33 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7943abdb-db44-46af-8413-2284a6f83322" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb3b91c0-ead6-42a8-ad81-82d4577bf14c" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "7ab813c4-1805-4791-9420-ad4a46ec58ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001904Z:7ab813c4-1805-4791-9420-ad4a46ec58ec" + ], + "Date": [ + "Tue, 10 Nov 2020 00:19:03 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc44353c-2d96-4431-9aa0-6ba73fdca3f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c1f7160b-99c9-4949-bc80-300798128b8b" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "ed7ed585-0f88-4624-a145-dbfed80d1baa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T001934Z:ed7ed585-0f88-4624-a145-dbfed80d1baa" + ], + "Date": [ + "Tue, 10 Nov 2020 00:19:34 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a40b826a-fc5e-4dc7-b89a-d49d6db9ae30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ddc7d6fb-f644-40a5-94e3-3f5904eafe20" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "94235335-bd37-4ce6-8c91-934a3b7cd86b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002004Z:94235335-bd37-4ce6-8c91-934a3b7cd86b" + ], + "Date": [ + "Tue, 10 Nov 2020 00:20:03 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e11b41c-df5d-4b0b-a1ac-8fc3c12a3a42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61e5e6c7-7b14-455b-bb95-5be6fb5a8d84" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c467da53-b7e3-4613-9636-1250275707c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002034Z:c467da53-b7e3-4613-9636-1250275707c9" + ], + "Date": [ + "Tue, 10 Nov 2020 00:20:33 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b601222d-f88a-473d-ae5b-b3a3c796256f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2ee06066-f710-4145-94dc-d0a7e4e2d434" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "62ca1d5e-ee85-47c4-9af4-f819294502f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002104Z:62ca1d5e-ee85-47c4-9af4-f819294502f0" + ], + "Date": [ + "Tue, 10 Nov 2020 00:21:04 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc4643ab-6700-4e84-9949-82dd6964d69c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cd775b21-2862-4546-9085-9626895a1848" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "32be67fd-d91a-4d67-b5aa-ff97f3589ee7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002134Z:32be67fd-d91a-4d67-b5aa-ff97f3589ee7" + ], + "Date": [ + "Tue, 10 Nov 2020 00:21:34 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4fcad14-b509-4616-92ff-b10d073817ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "af4fa851-99f6-4975-ae50-0fe32db280ad" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "1cd82bab-bd7d-4f12-9ffd-7b7680dde3bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002205Z:1cd82bab-bd7d-4f12-9ffd-7b7680dde3bf" + ], + "Date": [ + "Tue, 10 Nov 2020 00:22:04 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/databases/default?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTIvZGF0YWJhc2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"ERROR_RATE 0.00 INITIAL_SIZE 400\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"args\": \"RETENTION_POLICY 20\"\r\n },\r\n {\r\n \"name\": \"RediSearch\"\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0e3e4cf-b7dc-45ea-a4db-e5443e161b39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "409" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/databases/default?api-version=2020-10-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e7e4d4c4-ab8d-4dd9-b1fc-8fc7529bf5c9?api-version=2020-10-01-preview" + ], + "x-ms-request-id": [ + "2a1b8b1a-9e0d-484e-878d-52773418d3ad" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "6d57b474-b2d8-437b-8cab-ce2da70f9364" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002205Z:6d57b474-b2d8-437b-8cab-ce2da70f9364" + ], + "Date": [ + "Tue, 10 Nov 2020 00:22:05 GMT" + ], + "Content-Length": [ + "762" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"version\": \"1.4.5\"\r\n },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"version\": \"2.0.1\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "089e9eba-b8e1-470b-bd6b-e23473bb88a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/operationresults/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview" + ], + "x-ms-request-id": [ + "9fa95042-4a7a-485f-b72f-476ede948ca6" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "62b4d5bb-3727-46c0-9154-d31895d27666" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002206Z:62b4d5bb-3727-46c0-9154-d31895d27666" + ], + "Date": [ + "Tue, 10 Nov 2020 00:22:05 GMT" + ], + "Content-Length": [ + "552" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "92b8c2fd-5733-43ed-bc81-c0b6ee868015" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "b1ab47a3-70a8-45ce-b82d-e852a67d8f1a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002236Z:b1ab47a3-70a8-45ce-b82d-e852a67d8f1a" + ], + "Date": [ + "Tue, 10 Nov 2020 00:22:35 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "feedfaaa-d8a6-4b6f-8160-a44d9aa6d83e" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "71f8be30-0533-4551-91c2-861cb75ce577" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002306Z:71f8be30-0533-4551-91c2-861cb75ce577" + ], + "Date": [ + "Tue, 10 Nov 2020 00:23:06 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b59284df-596c-4c57-9a7d-2ac68a7b6306" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "7fb2c63c-6379-4448-824b-9954a229820e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002336Z:7fb2c63c-6379-4448-824b-9954a229820e" + ], + "Date": [ + "Tue, 10 Nov 2020 00:23:36 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "09cc67cb-0c0e-4d78-b942-7d207ddcbc1b" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "23e5b0d5-615d-4cec-b627-5c653b4df8f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002406Z:23e5b0d5-615d-4cec-b627-5c653b4df8f5" + ], + "Date": [ + "Tue, 10 Nov 2020 00:24:06 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73ec4d9b-dd03-4986-b849-464e00eed47a" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "1c63345c-8a00-4ecc-9ec0-2facff647d82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002436Z:1c63345c-8a00-4ecc-9ec0-2facff647d82" + ], + "Date": [ + "Tue, 10 Nov 2020 00:24:35 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d310f3d4-06dd-4a77-8548-791c6cbf7d2b" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "4f3cd03b-bd8f-4492-aa16-1560a108f8ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002506Z:4f3cd03b-bd8f-4492-aa16-1560a108f8ba" + ], + "Date": [ + "Tue, 10 Nov 2020 00:25:06 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ef84d1e6-7a0b-46ae-a588-40ec149b7d59" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "0b4642ff-72c0-4e5b-8f61-a6cdec4bb38a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002537Z:0b4642ff-72c0-4e5b-8f61-a6cdec4bb38a" + ], + "Date": [ + "Tue, 10 Nov 2020 00:25:36 GMT" + ], + "Content-Length": [ + "309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ba16c1eb-9a62-4c7a-9492-842ae7e29747" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "5ff1667a-ab12-4a6f-ad73-58777abf77f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002607Z:5ff1667a-ab12-4a6f-ad73-58777abf77f7" + ], + "Date": [ + "Tue, 10 Nov 2020 00:26:06 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "da6809c7-14dc-49ec-bad9-deb41807aa1c" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "650f0cb1-878f-4c73-95ef-072288987240" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002637Z:650f0cb1-878f-4c73-95ef-072288987240" + ], + "Date": [ + "Tue, 10 Nov 2020 00:26:36 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "89c04500-7e9e-47f2-be8b-30fbc0cdfe71" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "44f76409-86ca-45cc-a030-1b76f31bee3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002710Z:44f76409-86ca-45cc-a030-1b76f31bee3a" + ], + "Date": [ + "Tue, 10 Nov 2020 00:27:10 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0654f95-9b9a-4e29-853e-8e535b9d7c3e" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "24ea8f74-f190-4147-96a4-970d32f4cd92" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002740Z:24ea8f74-f190-4147-96a4-970d32f4cd92" + ], + "Date": [ + "Tue, 10 Nov 2020 00:27:40 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6c1efd6-69e7-4103-888b-dee53441f885" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "b9489952-1e8c-4a61-ba4d-88e09fcda67f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002810Z:b9489952-1e8c-4a61-ba4d-88e09fcda67f" + ], + "Date": [ + "Tue, 10 Nov 2020 00:28:09 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "83369e48-0e89-4d5d-b59e-df6e9e0b5387" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "def2291a-82ba-4cd7-b3ae-b986a485bc26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002841Z:def2291a-82ba-4cd7-b3ae-b986a485bc26" + ], + "Date": [ + "Tue, 10 Nov 2020 00:28:40 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "742f4494-82d8-43cc-9cf5-508ddf4edfa9" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "da9238e8-e85f-4aa3-a407-5e66794d262e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002911Z:da9238e8-e85f-4aa3-a407-5e66794d262e" + ], + "Date": [ + "Tue, 10 Nov 2020 00:29:10 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fab431f-a326-4aec-895c-ab3c08b3008f" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "aeb1dc6e-0cb3-4fc5-87b3-274e22260c84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T002941Z:aeb1dc6e-0cb3-4fc5-87b3-274e22260c84" + ], + "Date": [ + "Tue, 10 Nov 2020 00:29:40 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "54e2dd2f-ad65-4c30-90d3-3f59ef013460" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "bd2d1ee2-4b36-4e5a-b2d5-1f0d075d7bca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003011Z:bd2d1ee2-4b36-4e5a-b2d5-1f0d075d7bca" + ], + "Date": [ + "Tue, 10 Nov 2020 00:30:11 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fa69db88-be58-4650-9976-acb5be26f270" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "55e8156f-6a4f-4015-90b5-94c752234b82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003041Z:55e8156f-6a4f-4015-90b5-94c752234b82" + ], + "Date": [ + "Tue, 10 Nov 2020 00:30:41 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "78e440c0-8cb5-403f-95b4-86737c05157e" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "78579c06-427c-4121-b1da-6474c2a5517d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003111Z:78579c06-427c-4121-b1da-6474c2a5517d" + ], + "Date": [ + "Tue, 10 Nov 2020 00:31:10 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "07e9f12a-ecaa-4788-b7bc-a4cbc0b20da3" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "e3e26d61-8a51-430a-bd5a-5b5ba4407d95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003141Z:e3e26d61-8a51-430a-bd5a-5b5ba4407d95" + ], + "Date": [ + "Tue, 10 Nov 2020 00:31:41 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c9affc7c-c81a-429b-a934-97631bed4f02" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "cdb6c722-f26d-4a60-a8e5-c26c90ff10fc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003211Z:cdb6c722-f26d-4a60-a8e5-c26c90ff10fc" + ], + "Date": [ + "Tue, 10 Nov 2020 00:32:11 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7549e0f2-5030-45b1-9320-29407685e833" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c717d3da-9a36-47e4-99fd-b954342954f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003241Z:c717d3da-9a36-47e4-99fd-b954342954f0" + ], + "Date": [ + "Tue, 10 Nov 2020 00:32:41 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "12ec9332-974e-40f4-beea-f4eefb0bb9b8" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "52cda8d4-6879-46b4-939f-b18e400291d4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003312Z:52cda8d4-6879-46b4-939f-b18e400291d4" + ], + "Date": [ + "Tue, 10 Nov 2020 00:33:11 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "911d7b1d-20fd-42fe-9570-2d6339413270" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "5ad64c61-1ba9-4b78-bb88-b4daf17cc8bb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003342Z:5ad64c61-1ba9-4b78-bb88-b4daf17cc8bb" + ], + "Date": [ + "Tue, 10 Nov 2020 00:33:42 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ba79cee4-8c19-42dd-83ff-271e27fb45de" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "e3d83fc2-d0ff-4310-8eaa-8a03db5e2647" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003412Z:e3d83fc2-d0ff-4310-8eaa-8a03db5e2647" + ], + "Date": [ + "Tue, 10 Nov 2020 00:34:12 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "714285ca-7be0-4eac-ab16-7179c7ec13a5" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "ffb5986d-4e32-4fb8-b37e-3cc93739a719" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003442Z:ffb5986d-4e32-4fb8-b37e-3cc93739a719" + ], + "Date": [ + "Tue, 10 Nov 2020 00:34:41 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5f2dbc3-f7ba-4c0c-a7e1-756d779bc8c0" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "769f9e46-c635-4e5b-9d85-b7069bf841f1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003512Z:769f9e46-c635-4e5b-9d85-b7069bf841f1" + ], + "Date": [ + "Tue, 10 Nov 2020 00:35:12 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7bc76ac8-33f5-4fbc-b233-351858a8ee04" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "bbd028c3-eed5-4810-8684-5d66ac8d48db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003542Z:bbd028c3-eed5-4810-8684-5d66ac8d48db" + ], + "Date": [ + "Tue, 10 Nov 2020 00:35:42 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "82596f74-2d59-44cd-8f64-e3ea919f7b29" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "7434eb2c-b2c9-417c-aa41-3365a02a5e82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003612Z:7434eb2c-b2c9-417c-aa41-3365a02a5e82" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:12 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:03.9218138-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/operationresults/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTIvb3BlcmF0aW9ucmVzdWx0cy8xN2IzOTBmMy1mMjBkLTQzZDctOWUwMi00NDJiYmI0MTE4OTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e40fc29b-9a04-4e44-8733-a20910fe9965" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "8fc09c42-8957-4e70-b3c4-127e2848aabb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003613Z:8fc09c42-8957-4e70-b3c4-127e2848aabb" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:12 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "BeginCreateFunctionalTest": [ + "RedisEnterpriseBegin9491", + "RedisEnterpriseBegin2752" + ] + }, + "Variables": { + "SubscriptionId": "e311648e-a318-4a16-836e-f4a91cc73e9b" + } +} \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json new file mode 100644 index 000000000000..5428c6dc27ef --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json @@ -0,0 +1,2210 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a580f8d0-93b1-4590-98fb-c4ebfab3751d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "152" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview" + ], + "x-ms-request-id": [ + "22ce7399-bce6-4b84-b769-60cf345cca43" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "29873a42-cdb7-46e1-9e23-d25b037e2289" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003620Z:29873a42-cdb7-46e1-9e23-d25b037e2289" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:20 GMT" + ], + "Content-Length": [ + "542" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8871\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4597978a-9841-4471-b353-15a37da51fb4" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "219db5c7-1d52-4bd2-8122-b4798c077d26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003651Z:219db5c7-1d52-4bd2-8122-b4798c077d26" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:50 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "935660a5-9b05-4f1a-a5a9-e42e755eb57c" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "f7879d8d-e938-4af0-bf52-4a6eec46e5e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003721Z:f7879d8d-e938-4af0-bf52-4a6eec46e5e4" + ], + "Date": [ + "Tue, 10 Nov 2020 00:37:20 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dadd6217-d010-4412-a814-a8bbf61861f1" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "cf87dcaf-0f44-4fd9-a7f3-7807ac18221d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003751Z:cf87dcaf-0f44-4fd9-a7f3-7807ac18221d" + ], + "Date": [ + "Tue, 10 Nov 2020 00:37:50 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a7ef287-eb1f-4ae2-9f4b-94f21c08d040" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "5b1ab322-fe48-4849-9ec5-9c9490ae6fb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003821Z:5b1ab322-fe48-4849-9ec5-9c9490ae6fb5" + ], + "Date": [ + "Tue, 10 Nov 2020 00:38:21 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d94bd29f-ca81-4af6-85f6-f2f4b44d1ffc" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "e51bade2-fc99-439a-b83a-84be68f44035" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003851Z:e51bade2-fc99-439a-b83a-84be68f44035" + ], + "Date": [ + "Tue, 10 Nov 2020 00:38:51 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c8eec0cd-1adc-40b7-b049-86797e404b41" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "5b6c9df7-ca89-44a9-875f-7593d5c619d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003921Z:5b6c9df7-ca89-44a9-875f-7593d5c619d3" + ], + "Date": [ + "Tue, 10 Nov 2020 00:39:21 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "919c3cbd-a215-4020-94e6-38c60935fd0b" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "add61cd4-516b-42d3-a94f-1e035e55c313" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003951Z:add61cd4-516b-42d3-a94f-1e035e55c313" + ], + "Date": [ + "Tue, 10 Nov 2020 00:39:50 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6cd2e607-2ac0-40ed-9158-c2646926d4b8" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "4d5fbffb-b610-48c4-8cfb-0d1bf9b6710e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004021Z:4d5fbffb-b610-48c4-8cfb-0d1bf9b6710e" + ], + "Date": [ + "Tue, 10 Nov 2020 00:40:21 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e41b546-12bc-4f61-9c66-a62af9db05cc" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "6c0846bb-4256-4ad0-910c-5c2359a23fa3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004051Z:6c0846bb-4256-4ad0-910c-5c2359a23fa3" + ], + "Date": [ + "Tue, 10 Nov 2020 00:40:51 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56d1d79a-ec0c-42ff-947a-1cf0db07abba" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "c94b3a92-3e22-4cda-8479-fd66d620acf5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004122Z:c94b3a92-3e22-4cda-8479-fd66d620acf5" + ], + "Date": [ + "Tue, 10 Nov 2020 00:41:21 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2966d0a2-409a-49e9-91da-abd2e8f29b97" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "3343695b-0162-4f33-80bf-dfe225b7b8fd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004152Z:3343695b-0162-4f33-80bf-dfe225b7b8fd" + ], + "Date": [ + "Tue, 10 Nov 2020 00:41:51 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fa3a0cba-091e-4371-aa43-bcb92b177fa5" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "08d4c1cd-40e4-4934-b1f2-f90ccae676c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004222Z:08d4c1cd-40e4-4934-b1f2-f90ccae676c8" + ], + "Date": [ + "Tue, 10 Nov 2020 00:42:21 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:41:53.6643419-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5e32da01-853d-431a-805f-0655b5372cc3" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "09884092-3bf3-4729-b771-34db6761fbde" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004222Z:09884092-3bf3-4729-b771-34db6761fbde" + ], + "Date": [ + "Tue, 10 Nov 2020 00:42:21 GMT" + ], + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8871\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MS9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7e140dd-a628-4822-a138-7c1bcebf47db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "147" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default?api-version=2020-10-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/b610e85b-f843-4a4a-9454-22ea4ce6923b?api-version=2020-10-01-preview" + ], + "x-ms-request-id": [ + "3dd4af15-fdd2-49e6-8d17-68c88457afea" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "ae5f8d73-dc34-43bf-9a0b-80f5810cb039" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004222Z:ae5f8d73-dc34-43bf-9a0b-80f5810cb039" + ], + "Date": [ + "Tue, 10 Nov 2020 00:42:22 GMT" + ], + "Content-Length": [ + "520" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MS9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9a4d2ab3-42fc-49e7-8df9-cbe7d6fbd381" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "2d07df1e-3be6-4497-bf9b-2ec02dd62355" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004223Z:2d07df1e-3be6-4497-bf9b-2ec02dd62355" + ], + "Date": [ + "Tue, 10 Nov 2020 00:42:22 GMT" + ], + "Content-Length": [ + "452" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ac4fec2-c316-4af2-a643-70491698b62a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/operationresults/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview" + ], + "x-ms-request-id": [ + "70fc90fa-1776-4d9c-972d-2a352ea88dce" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "51a4e06e-46ca-4f57-8ced-8d94ac537b02" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004223Z:51a4e06e-46ca-4f57-8ced-8d94ac537b02" + ], + "Date": [ + "Tue, 10 Nov 2020 00:42:22 GMT" + ], + "Content-Length": [ + "579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8871\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "406df0e1-0d46-486c-a556-b90a4e9e634d" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "84217117-33b4-4d12-84e7-6c04f7f2f517" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004253Z:84217117-33b4-4d12-84e7-6c04f7f2f517" + ], + "Date": [ + "Tue, 10 Nov 2020 00:42:53 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f68f9e7-edc8-4a91-9696-f9734a0df360" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "e266502b-90d3-4aa0-a3ab-56e730fab250" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004323Z:e266502b-90d3-4aa0-a3ab-56e730fab250" + ], + "Date": [ + "Tue, 10 Nov 2020 00:43:23 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bd3a592-3da4-4615-9024-4628addee5d3" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "a1ad6f12-8ed3-4f1f-826a-ea18489e0b25" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004354Z:a1ad6f12-8ed3-4f1f-826a-ea18489e0b25" + ], + "Date": [ + "Tue, 10 Nov 2020 00:43:53 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cac46784-021d-43d4-94fc-1588667d36ad" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "41f34a81-4b40-44bd-a6e0-7f565edf6621" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004424Z:41f34a81-4b40-44bd-a6e0-7f565edf6621" + ], + "Date": [ + "Tue, 10 Nov 2020 00:44:23 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6e7d008-24da-48b2-842e-63dbc7ce0323" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "2a5e6737-a731-469b-b16c-ae43ce9b8817" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004454Z:2a5e6737-a731-469b-b16c-ae43ce9b8817" + ], + "Date": [ + "Tue, 10 Nov 2020 00:44:53 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65f81d8e-09f8-4dac-b85d-0830773a83ee" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "59ec96b2-18b0-4224-bcc4-20e6a09ca38e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004524Z:59ec96b2-18b0-4224-bcc4-20e6a09ca38e" + ], + "Date": [ + "Tue, 10 Nov 2020 00:45:23 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a39470e1-aee8-47cc-93f1-75d3bcddf22b" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "d20152f9-e3f1-4954-9519-e5b7e2e5d1db" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004554Z:d20152f9-e3f1-4954-9519-e5b7e2e5d1db" + ], + "Date": [ + "Tue, 10 Nov 2020 00:45:54 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fae8ed89-51a3-46e3-a050-f07793fcd780" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "c7e2f6c9-d47d-4373-9fb2-df6a7880e41a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004624Z:c7e2f6c9-d47d-4373-9fb2-df6a7880e41a" + ], + "Date": [ + "Tue, 10 Nov 2020 00:46:23 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "621f17a9-f5fa-48dd-9974-d43c394bd308" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "34fa5548-48ec-4348-b7b5-5ba5fe506188" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004654Z:34fa5548-48ec-4348-b7b5-5ba5fe506188" + ], + "Date": [ + "Tue, 10 Nov 2020 00:46:54 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "406b495f-0681-4a1b-9eae-3945956234be" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "8fc0701f-5691-4ff8-87d9-4b047a97a538" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004724Z:8fc0701f-5691-4ff8-87d9-4b047a97a538" + ], + "Date": [ + "Tue, 10 Nov 2020 00:47:24 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8704da8-f2f8-4ac2-a97b-d8fdc9bdfd56" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "b5e9332d-eb68-40a5-b56c-ac7c77eb2156" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004754Z:b5e9332d-eb68-40a5-b56c-ac7c77eb2156" + ], + "Date": [ + "Tue, 10 Nov 2020 00:47:54 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab9a0c11-9cc8-4693-8ba1-d9010901947e" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "73e995ca-6bcd-4cda-9d67-6492d7b9e899" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004825Z:73e995ca-6bcd-4cda-9d67-6492d7b9e899" + ], + "Date": [ + "Tue, 10 Nov 2020 00:48:24 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d2c1f3c-c3d1-4952-a450-656be8d7c022" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "bf3e45d7-c9b6-4a5c-b95c-597af3abd81a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004855Z:bf3e45d7-c9b6-4a5c-b95c-597af3abd81a" + ], + "Date": [ + "Tue, 10 Nov 2020 00:48:54 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b0b5423c-f9d2-4302-84a8-a53e5985c201" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "ffe45153-98d1-4e9d-b179-8e5970600050" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004925Z:ffe45153-98d1-4e9d-b179-8e5970600050" + ], + "Date": [ + "Tue, 10 Nov 2020 00:49:24 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2979dc40-fff5-495f-9a67-9a9beb3dfde7" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "57c075a9-68d8-4c03-a479-215427460843" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T004955Z:57c075a9-68d8-4c03-a479-215427460843" + ], + "Date": [ + "Tue, 10 Nov 2020 00:49:55 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "558dc11e-d5c0-4b2c-ba3a-7b44cb9d4cd1" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "a9a66d4c-8e8e-4907-b980-bf0be6aed883" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T005025Z:a9a66d4c-8e8e-4907-b980-bf0be6aed883" + ], + "Date": [ + "Tue, 10 Nov 2020 00:50:25 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c94a4832-d9c7-4917-9150-4904e82492e2" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "ce7a92d4-7fc3-4f14-8195-82abffeb8ffa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T005055Z:ce7a92d4-7fc3-4f14-8195-82abffeb8ffa" + ], + "Date": [ + "Tue, 10 Nov 2020 00:50:54 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d9d4e93e-979b-425d-9748-faf229d2b811" + ], + "x-rp-server-mvid": [ + "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + ], + "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": [ + "b0a68c7c-7ec6-402d-8d91-fab04d9b2248" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T005125Z:b0a68c7c-7ec6-402d-8d91-fab04d9b2248" + ], + "Date": [ + "Tue, 10 Nov 2020 00:51:25 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:51:15.0371336-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/operationresults/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MS9vcGVyYXRpb25yZXN1bHRzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3e4ba81a-d058-4708-93ca-29b0a173a38c" + ], + "x-ms-correlation-request-id": [ + "3e4ba81a-d058-4708-93ca-29b0a173a38c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T005126Z:3e4ba81a-d058-4708-93ca-29b0a173a38c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:51:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "266" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871' under resource group 'RedisEnterpriseCreateUpdate5795' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "e311648e-a318-4a16-836e-f4a91cc73e9b" + } +} \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json new file mode 100644 index 000000000000..e80f6239c3da --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json @@ -0,0 +1,259 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13708b8a-8396-4e3c-82f8-d53b35443588" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "14492d02-d98f-475c-990c-def6a298d225" + ], + "x-ms-correlation-request-id": [ + "14492d02-d98f-475c-990c-def6a298d225" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003616Z:14492d02-d98f-475c-990c-def6a298d225" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:16 GMT" + ], + "Content-Length": [ + "11262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2c5fad6-f307-45d1-aabf-17e0db46822e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "62b5363f-5a1c-4a36-baf3-15d0d070b3f0" + ], + "x-ms-correlation-request-id": [ + "62b5363f-5a1c-4a36-baf3-15d0d070b3f0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003617Z:62b5363f-5a1c-4a36-baf3-15d0d070b3f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "11262" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate5795?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a803b3d6-1a3b-415d-a95a-8abeca250ab0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "2bcb64fe-05c2-4a7f-ab31-460c921ee9a8" + ], + "x-ms-correlation-request-id": [ + "2bcb64fe-05c2-4a7f-ab31-460c921ee9a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003617Z:2bcb64fe-05c2-4a7f-ab31-460c921ee9a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:17 GMT" + ], + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5795\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate5795?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c2e795c-30de-48fe-bc4c-d3f69d3016d2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "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": [ + "3316f3d1-8dff-4cd0-9e53-0b79c879f54e" + ], + "x-ms-correlation-request-id": [ + "3316f3d1-8dff-4cd0-9e53-0b79c879f54e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201110T003617Z:3316f3d1-8dff-4cd0-9e53-0b79c879f54e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 10 Nov 2020 00:36:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "215" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5795\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": { + ".ctor": [ + "RedisEnterpriseCreateUpdate5795", + "RedisEnterpriseCreateUpdate8871" + ] + }, + "Variables": { + "SubscriptionId": "e311648e-a318-4a16-836e-f4a91cc73e9b" + } +} \ No newline at end of file From 417c34d90524ed70affbc99fe2a4d441fac8a51c Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Wed, 11 Nov 2020 14:32:05 -0800 Subject: [PATCH 3/8] Add redisenterprise pipeline. --- eng/pipelines/mgmt.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/eng/pipelines/mgmt.yml b/eng/pipelines/mgmt.yml index 6520e9b654da..db8d691986d2 100644 --- a/eng/pipelines/mgmt.yml +++ b/eng/pipelines/mgmt.yml @@ -117,6 +117,7 @@ pr: - sdk/recoveryservices-backup/Microsoft.Azure.Management.RecoveryServices.Backup - sdk/recoveryservices-siterecovery/Microsoft.Azure.Management.RecoveryServices.SiteRecovery - sdk/redis/Microsoft.Azure.Management.RedisCache + - sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache - sdk/relay/Microsoft.Azure.Management.Relay - sdk/reservations/Microsoft.Azure.Management.Reservations - sdk/resourcegraph/Microsoft.Azure.Management.ResourceGraph From ad93f9ad6cb2d3a62f6df2d8f79bbee18ab93bf5 Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Wed, 25 Nov 2020 20:40:39 -0800 Subject: [PATCH 4/8] Updated SDK to match updated Swagger. --- .../redisenterprise_resource-manager.txt | 4 +- .../src/Generated/DatabasesOperations.cs | 994 ++++++++++++- .../DatabasesOperationsExtensions.cs | 350 +++++ .../src/Generated/IDatabasesOperations.cs | 204 +++ .../IRedisEnterpriseDatabaseOperations.cs | 231 --- .../src/Generated/IredisenterpriseClient.cs | 5 - .../RedisEnterpriseDatabaseOperations.cs | 948 ------------ ...sEnterpriseDatabaseOperationsExtensions.cs | 375 ----- .../src/Generated/SdkInfo_redisEnterprise.cs | 1 - .../src/Generated/redisenterpriseClient.cs | 6 - .../BeginCreateFunctionalTest.json | 1284 ++++++----------- .../CreateUpdateDeleteTest.json | 1254 +++++++++++----- .../SessionRecords/TestsFixture/.ctor.json | 64 +- 13 files changed, 2885 insertions(+), 2835 deletions(-) delete mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs delete mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs delete mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs diff --git a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt index c80ebaf2a1f4..9e1ceb834581 100644 --- a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt @@ -4,11 +4,11 @@ Commencing code generation Generating CSharp code Executing AutoRest command cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\repos\azure-sdk-for-net\sdk -2020-11-02 23:59:30 UTC +2020-11-26 01:06:30 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: f150a6d5f430d8645093d5c28ca7bfd28c96c477 +Commit: 121e6178fc40ba22414be219f896db42a10bbc02 AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs index 1e6c45a8c747..b6c6c2a7aa74 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs @@ -523,7 +523,7 @@ internal DatabasesOperations(redisenterpriseClient client) } /// - /// Creates a database + /// Retrieves the access keys for the RedisEnterprise database. /// /// /// The name of the resource group. @@ -534,9 +534,6 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// The name of the database. /// - /// - /// Parameters supplied to the create or update database operation. - /// /// /// Headers that will be added to request. /// @@ -558,7 +555,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -572,10 +569,6 @@ internal DatabasesOperations(redisenterpriseClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -594,13 +587,12 @@ internal DatabasesOperations(redisenterpriseClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("clusterName", clusterName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); @@ -617,7 +609,7 @@ internal DatabasesOperations(redisenterpriseClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -648,12 +640,6 @@ internal DatabasesOperations(redisenterpriseClient 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) { @@ -674,7 +660,7 @@ internal DatabasesOperations(redisenterpriseClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -704,7 +690,7 @@ internal DatabasesOperations(redisenterpriseClient 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")) @@ -717,25 +703,7 @@ internal DatabasesOperations(redisenterpriseClient client) _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); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -755,7 +723,92 @@ internal DatabasesOperations(redisenterpriseClient client) } /// - /// Updates a database + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates a database /// /// /// The name of the resource group. @@ -790,7 +843,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -828,7 +881,7 @@ internal DatabasesOperations(redisenterpriseClient client) tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -849,7 +902,7 @@ internal DatabasesOperations(redisenterpriseClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -906,7 +959,7 @@ internal DatabasesOperations(redisenterpriseClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -961,6 +1014,24 @@ internal DatabasesOperations(redisenterpriseClient client) 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); @@ -969,7 +1040,7 @@ internal DatabasesOperations(redisenterpriseClient client) } /// - /// Deletes a single database + /// Updates a database /// /// /// The name of the resource group. @@ -980,6 +1051,9 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// The name of the database. /// + /// + /// Parameters supplied to the create or update database operation. + /// /// /// Headers that will be added to request. /// @@ -989,6 +1063,9 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -998,7 +1075,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, DatabaseUpdate parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1012,6 +1089,10 @@ internal DatabasesOperations(redisenterpriseClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1030,8 +1111,9 @@ internal DatabasesOperations(redisenterpriseClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("clusterName", clusterName); tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1052,7 +1134,7 @@ internal DatabasesOperations(redisenterpriseClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1083,6 +1165,12 @@ internal DatabasesOperations(redisenterpriseClient 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) { @@ -1103,7 +1191,813 @@ internal DatabasesOperations(redisenterpriseClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + 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; + } + + /// + /// Deletes a single database + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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/redisEnterprise/{clusterName}/databases/{databaseName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("DELETE"); + _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 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// 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> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + RegenerateKeyParameters parameters = new RegenerateKeyParameters(); + parameters.KeyType = keyType; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRegenerateKey", 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/redisEnterprise/{clusterName}/databases/{databaseName}/regenerateKey").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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; + } + + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (sasUri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sasUri"); + } + ImportClusterParameters parameters = new ImportClusterParameters(); + if (sasUri != null) + { + parameters.SasUri = sasUri; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImport", 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/redisEnterprise/{clusterName}/databases/{databaseName}/import").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + 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) + { + 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 && (int)_statusCode != 202) + { + 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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// 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 + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (sasUri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "sasUri"); + } + ExportClusterParameters parameters = new ExportClusterParameters(); + if (sasUri != null) + { + parameters.SasUri = sasUri; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginExport", 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/redisEnterprise/{clusterName}/databases/{databaseName}/export").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _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("POST"); + _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; + 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) + { + 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 && (int)_statusCode != 202) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs index 83820e2e4907..7fc1c944247c 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs @@ -254,6 +254,204 @@ public static void Delete(this IDatabasesOperations operations, string resourceG (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + public static AccessKeys ListKeys(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName) + { + return operations.ListKeysAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task ListKeysAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + public static AccessKeys RegenerateKey(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType) + { + return operations.RegenerateKeyAsync(resourceGroupName, clusterName, databaseName, keyType).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeyAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + public static void Import(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.ImportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// The cancellation token. + /// + public static async Task ImportAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + public static void Export(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.ExportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// The cancellation token. + /// + public static async Task ExportAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Creates a database /// @@ -401,6 +599,158 @@ public static void BeginDelete(this IDatabasesOperations operations, string reso (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + public static AccessKeys BeginRegenerateKey(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType) + { + return operations.BeginRegenerateKeyAsync(resourceGroupName, clusterName, databaseName, keyType).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The cancellation token. + /// + public static async Task BeginRegenerateKeyAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + public static void BeginImport(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.BeginImportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Imports a database file to target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + public static void BeginExport(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) + { + operations.BeginExportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); + } + + /// + /// Exports a database file from target database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// The cancellation token. + /// + public static async Task BeginExportAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// /// Gets all databases in the specified RedisEnterprise cluster. /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs index d6ba476b6177..360b63f126cc 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs @@ -164,6 +164,122 @@ public partial interface IDatabasesOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Retrieves the access keys for the RedisEnterprise database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// 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> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// 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 ImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// 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 ExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Creates a database /// /// @@ -251,6 +367,94 @@ public partial interface IDatabasesOperations /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Regenerates the RedisEnterprise database's access keys. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// Which access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// 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> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a database file to target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target blob to import from + /// + /// + /// 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 BeginImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Exports a database file from target database. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the RedisEnterprise cluster. + /// + /// + /// The name of the database. + /// + /// + /// SAS Uri for the target directory to export to + /// + /// + /// 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 BeginExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets all databases in the specified RedisEnterprise cluster. /// /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs deleted file mode 100644 index 2097d861acbc..000000000000 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseDatabaseOperations.cs +++ /dev/null @@ -1,231 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.RedisEnterprise -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// RedisEnterpriseDatabaseOperations operations. - /// - public partial interface IRedisEnterpriseDatabaseOperations - { - /// - /// Retrieves the access keys for the RedisEnterprise database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - /// - /// 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> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Imports a database file to target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - /// - /// 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 ImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Exports a database file from target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - /// - /// 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 ExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - /// - /// 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> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Imports a database file to target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - /// - /// 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 BeginImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Exports a database file from target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - /// - /// 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 BeginExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs index ee6acd5d08da..bb135c166e05 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs @@ -91,11 +91,6 @@ public partial interface IredisenterpriseClient : System.IDisposable /// IDatabasesOperations Databases { get; } - /// - /// Gets the IRedisEnterpriseDatabaseOperations. - /// - IRedisEnterpriseDatabaseOperations RedisEnterpriseDatabase { get; } - /// /// Gets the IPrivateEndpointConnectionsOperations. /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs deleted file mode 100644 index 4e7270332a52..000000000000 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperations.cs +++ /dev/null @@ -1,948 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.RedisEnterprise -{ - 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; - - /// - /// RedisEnterpriseDatabaseOperations operations. - /// - internal partial class RedisEnterpriseDatabaseOperations : IServiceOperations, IRedisEnterpriseDatabaseOperations - { - /// - /// Initializes a new instance of the RedisEnterpriseDatabaseOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal RedisEnterpriseDatabaseOperations(redisenterpriseClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the redisenterpriseClient - /// - public redisenterpriseClient Client { get; private set; } - - /// - /// Retrieves the access keys for the RedisEnterprise database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (databaseName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("cancellationToken", cancellationToken); - 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}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/databases/{databaseName}/listKeys").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _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("POST"); - _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; - } - - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Imports a database file to target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Exports a database file from target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task ExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - /// - /// 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> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (databaseName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - RegenerateKeyParameters parameters = new RegenerateKeyParameters(); - parameters.KeyType = keyType; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginRegenerateKey", 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/redisEnterprise/{clusterName}/databases/{databaseName}/regenerateKey").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _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("POST"); - _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; - 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) - { - 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 && (int)_statusCode != 202) - { - 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; - } - - /// - /// Imports a database file to target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - /// - /// 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 - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginImportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (databaseName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (sasUri == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "sasUri"); - } - ImportClusterParameters parameters = new ImportClusterParameters(); - if (sasUri != null) - { - parameters.SasUri = sasUri; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginImport", 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/redisEnterprise/{clusterName}/databases/{databaseName}/import").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _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("POST"); - _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; - 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) - { - 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 && (int)_statusCode != 202) - { - 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(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// Exports a database file from target database. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - /// - /// 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 - /// - /// - /// Thrown when a required parameter is null - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task BeginExportWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, string sasUri, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (databaseName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (sasUri == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "sasUri"); - } - ExportClusterParameters parameters = new ExportClusterParameters(); - if (sasUri != null) - { - parameters.SasUri = sasUri; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginExport", 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/redisEnterprise/{clusterName}/databases/{databaseName}/export").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _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("POST"); - _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; - 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) - { - 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 && (int)_statusCode != 202) - { - 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(); - } - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - } -} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs deleted file mode 100644 index dc0833c5abf4..000000000000 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseDatabaseOperationsExtensions.cs +++ /dev/null @@ -1,375 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.RedisEnterprise -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for RedisEnterpriseDatabaseOperations. - /// - public static partial class RedisEnterpriseDatabaseOperationsExtensions - { - /// - /// Retrieves the access keys for the RedisEnterprise database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - public static AccessKeys ListKeys(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName) - { - return operations.ListKeysAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); - } - - /// - /// Retrieves the access keys for the RedisEnterprise database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// The cancellation token. - /// - public static async Task ListKeysAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - public static AccessKeys RegenerateKey(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType) - { - return operations.RegenerateKeyAsync(resourceGroupName, clusterName, databaseName, keyType).GetAwaiter().GetResult(); - } - - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - /// - /// The cancellation token. - /// - public static async Task RegenerateKeyAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Imports a database file to target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - public static void Import(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) - { - operations.ImportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); - } - - /// - /// Imports a database file to target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - /// - /// The cancellation token. - /// - public static async Task ImportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Exports a database file from target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - public static void Export(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) - { - operations.ExportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); - } - - /// - /// Exports a database file from target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - /// - /// The cancellation token. - /// - public static async Task ExportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.ExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - public static AccessKeys BeginRegenerateKey(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType) - { - return operations.BeginRegenerateKeyAsync(resourceGroupName, clusterName, databaseName, keyType).GetAwaiter().GetResult(); - } - - /// - /// Regenerates the RedisEnterprise database's access keys. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// Which access key to regenerate. Possible values include: 'Primary', - /// 'Secondary' - /// - /// - /// The cancellation token. - /// - public static async Task BeginRegenerateKeyAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, AccessKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, keyType, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Imports a database file to target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - public static void BeginImport(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) - { - operations.BeginImportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); - } - - /// - /// Imports a database file to target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target blob to import from - /// - /// - /// The cancellation token. - /// - public static async Task BeginImportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Exports a database file from target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - public static void BeginExport(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) - { - operations.BeginExportAsync(resourceGroupName, clusterName, databaseName, sasUri).GetAwaiter().GetResult(); - } - - /// - /// Exports a database file from target database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the RedisEnterprise cluster. - /// - /// - /// The name of the database. - /// - /// - /// SAS Uri for the target directory to export to - /// - /// - /// The cancellation token. - /// - public static async Task BeginExportAsync(this IRedisEnterpriseDatabaseOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginExportWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, sasUri, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - } -} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs index 617cd4f07b50..7fecfa11aecd 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs @@ -25,7 +25,6 @@ public static IEnumerable> ApiInfo_redisEnterprise new Tuple("Cache", "PrivateEndpointConnections", "2020-10-01-preview"), new Tuple("Cache", "PrivateLinkResources", "2020-10-01-preview"), new Tuple("Cache", "RedisEnterprise", "2020-10-01-preview"), - new Tuple("Cache", "RedisEnterpriseDatabase", "2020-10-01-preview"), }.AsEnumerable(); } } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs index aeeeded1afd1..4e96523f30d7 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs @@ -96,11 +96,6 @@ public partial class redisenterpriseClient : ServiceClient public virtual IDatabasesOperations Databases { get; private set; } - /// - /// Gets the IRedisEnterpriseDatabaseOperations. - /// - public virtual IRedisEnterpriseDatabaseOperations RedisEnterpriseDatabase { get; private set; } - /// /// Gets the IPrivateEndpointConnectionsOperations. /// @@ -356,7 +351,6 @@ private void Initialize() Get = new GetOperations(this); RedisEnterprise = new RedisEnterpriseOperations(this); Databases = new DatabasesOperations(this); - RedisEnterpriseDatabase = new RedisEnterpriseDatabaseOperations(this); PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); PrivateLinkResources = new PrivateLinkResourcesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json index 1c726d7b451f..00889f6eae75 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a66b74c-83d7-4de9-9289-cdb9d16f1266" + "9aecbdad-a0af-4e49-98ea-e3024843a999" ], "Accept-Language": [ "en-US" @@ -30,13 +30,13 @@ "1199" ], "x-ms-request-id": [ - "abfaf396-9e65-42ef-a75e-24b48c99bca5" + "bee569b4-f2b9-4095-ba89-abe700c8a3b7" ], "x-ms-correlation-request-id": [ - "abfaf396-9e65-42ef-a75e-24b48c99bca5" + "bee569b4-f2b9-4095-ba89-abe700c8a3b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001458Z:abfaf396-9e65-42ef-a75e-24b48c99bca5" + "WESTUS2:20201126T013207Z:bee569b4-f2b9-4095-ba89-abe700c8a3b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:14:57 GMT" + "Thu, 26 Nov 2020 01:32:06 GMT" ], "Content-Length": [ - "11262" + "11273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,7 +57,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 }, { @@ -67,7 +67,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6aa938f7-7e9a-41cd-9d27-b63a807f182b" + "97ac57ac-2e19-4a25-8fc0-718108ac5824" ], "Accept-Language": [ "en-US" @@ -90,13 +90,13 @@ "11999" ], "x-ms-request-id": [ - "b9b072f1-1e43-4719-b0b4-d2b29495cfd5" + "d1bca5b4-a60a-42ea-8a8e-6972e01520dc" ], "x-ms-correlation-request-id": [ - "b9b072f1-1e43-4719-b0b4-d2b29495cfd5" + "d1bca5b4-a60a-42ea-8a8e-6972e01520dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001458Z:b9b072f1-1e43-4719-b0b4-d2b29495cfd5" + "WESTUS2:20201126T013207Z:d1bca5b4-a60a-42ea-8a8e-6972e01520dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:14:58 GMT" + "Thu, 26 Nov 2020 01:32:06 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,20 +114,20 @@ "-1" ], "Content-Length": [ - "11262" + "11273" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin9491?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin4176?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d30060b1-fa89-4f53-b911-613cf73fca94" + "e1c9c486-14ef-4a5d-94e7-6e11aca93be7" ], "Accept-Language": [ "en-US" @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "5358632f-253b-43e1-84f5-0c01f73164a6" + "cd330b31-7443-441e-b3b6-47d8d986c286" ], "x-ms-correlation-request-id": [ - "5358632f-253b-43e1-84f5-0c01f73164a6" + "cd330b31-7443-441e-b3b6-47d8d986c286" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001459Z:5358632f-253b-43e1-84f5-0c01f73164a6" + "WESTUS2:20201126T013208Z:cd330b31-7443-441e-b3b6-47d8d986c286" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:14:59 GMT" + "Thu, 26 Nov 2020 01:32:07 GMT" ], "Content-Length": [ "201" @@ -183,17 +183,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491\",\r\n \"name\": \"RedisEnterpriseBegin9491\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176\",\r\n \"name\": \"RedisEnterpriseBegin4176\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin9491?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin4176?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3158787b-f4e4-4051-9336-efd20e5e39d9" + "0a27dd4d-982b-44ca-b640-a4872095c84d" ], "Accept-Language": [ "en-US" @@ -216,13 +216,13 @@ "11998" ], "x-ms-request-id": [ - "92814051-1d46-4345-97e1-f36b4db6ca9a" + "b935d674-1d7b-4cb6-b625-62e6fb0cceb0" ], "x-ms-correlation-request-id": [ - "92814051-1d46-4345-97e1-f36b4db6ca9a" + "b935d674-1d7b-4cb6-b625-62e6fb0cceb0" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001459Z:92814051-1d46-4345-97e1-f36b4db6ca9a" + "WESTUS2:20201126T013208Z:b935d674-1d7b-4cb6-b625-62e6fb0cceb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:14:59 GMT" + "Thu, 26 Nov 2020 01:32:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,17 +243,17 @@ "201" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491\",\r\n \"name\": \"RedisEnterpriseBegin9491\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176\",\r\n \"name\": \"RedisEnterpriseBegin4176\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2a49077e-4f7f-480c-ac95-f79c0a40953b" + "89ce36f5-4320-486b-a244-42bb3a8cbba7" ], "Accept-Language": [ "en-US" @@ -279,16 +279,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3cb09f05-1ec5-497b-b879-52ebb45f66b1?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/06d75285-7cd6-4db3-9061-95680d583df5?api-version=2020-10-01-preview" ], "x-ms-request-id": [ - "5c772ed8-6772-4a2b-a2ee-12e1d94d4dbd" + "bc868584-407b-4b25-ab3c-4c03faa418df" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,13 +303,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "eced7181-10d3-4047-894f-b55de45ff833" + "56ee6f15-4249-407d-9905-e594d8aef133" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001503Z:eced7181-10d3-4047-894f-b55de45ff833" + "WESTUS2:20201126T013212Z:56ee6f15-4249-407d-9905-e594d8aef133" ], "Date": [ - "Tue, 10 Nov 2020 00:15:02 GMT" + "Thu, 26 Nov 2020 01:32:11 GMT" ], "Content-Length": [ "515" @@ -321,17 +321,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12f84310-1141-4879-9dd8-696dde82ccc6" + "befcfac4-8809-4105-beab-f33c939b781c" ], "Accept-Language": [ "en-US" @@ -351,10 +351,10 @@ "no-cache" ], "x-ms-request-id": [ - "085fc98e-5998-450d-a04f-6bd76b7d0967" + "5ce708f6-e86d-4247-a697-07520ff78970" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,16 +366,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-correlation-request-id": [ - "6be6ea77-ee57-440b-bdba-1caeca30d4c3" + "9dc4547f-8844-4904-bee3-f2f8adcc4dbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001503Z:6be6ea77-ee57-440b-bdba-1caeca30d4c3" + "WESTUS2:20201126T013212Z:9dc4547f-8844-4904-bee3-f2f8adcc4dbe" ], "Date": [ - "Tue, 10 Nov 2020 00:15:03 GMT" + "Thu, 26 Nov 2020 01:32:12 GMT" ], "Content-Length": [ "552" @@ -387,17 +387,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7394671-9173-41c2-a44c-2f3094a3d968" + "04e127a1-1c9f-48fe-b831-4ed7e31501ff" ], "Accept-Language": [ "en-US" @@ -417,10 +417,10 @@ "no-cache" ], "x-ms-request-id": [ - "d1037ce4-bbaa-46d2-8706-5112ab92d828" + "d0bdc57b-ea1f-4756-a52a-4267e4097608" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,16 +432,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "762833c1-4edb-4478-a6c8-8a3c31c57e5f" + "2fb01ebe-8fbb-4a53-9adf-9265eb186142" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001533Z:762833c1-4edb-4478-a6c8-8a3c31c57e5f" + "WESTUS2:20201126T013242Z:2fb01ebe-8fbb-4a53-9adf-9265eb186142" ], "Date": [ - "Tue, 10 Nov 2020 00:15:32 GMT" + "Thu, 26 Nov 2020 01:32:41 GMT" ], "Content-Length": [ "552" @@ -453,17 +453,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "551107f4-bfcd-4852-9672-ff3ee5113329" + "7989e47b-aa1a-4696-8f43-c7c109f7b715" ], "Accept-Language": [ "en-US" @@ -483,10 +483,10 @@ "no-cache" ], "x-ms-request-id": [ - "fe205a57-e6b2-480f-a9c8-73cccfa3bbbf" + "53720c85-dce6-40cb-9465-202991420569" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,16 +498,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "337d3292-8de2-4e71-aaac-7fe497da51ea" + "75abb8c2-84d8-4498-a4b1-40c493757d9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001603Z:337d3292-8de2-4e71-aaac-7fe497da51ea" + "WESTUS2:20201126T013312Z:75abb8c2-84d8-4498-a4b1-40c493757d9f" ], "Date": [ - "Tue, 10 Nov 2020 00:16:02 GMT" + "Thu, 26 Nov 2020 01:33:11 GMT" ], "Content-Length": [ "552" @@ -519,17 +519,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6536504b-4d66-46fd-b02f-ffa204030b69" + "358a550f-ba41-4ca9-8347-cec487531110" ], "Accept-Language": [ "en-US" @@ -549,10 +549,10 @@ "no-cache" ], "x-ms-request-id": [ - "f1926609-8ed0-4c8d-82d0-634934d500e9" + "71c20f62-25b7-49f1-ac1a-667a79250bce" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,16 +564,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-correlation-request-id": [ - "bae5d1c6-864e-47af-a5c1-6173f2448136" + "de142fcb-34b6-4dc0-bfd1-c20155c1b182" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001633Z:bae5d1c6-864e-47af-a5c1-6173f2448136" + "WESTUS2:20201126T013342Z:de142fcb-34b6-4dc0-bfd1-c20155c1b182" ], "Date": [ - "Tue, 10 Nov 2020 00:16:33 GMT" + "Thu, 26 Nov 2020 01:33:42 GMT" ], "Content-Length": [ "552" @@ -585,17 +585,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cb21247-96e0-462c-a6d5-6a08b56fe71f" + "f60f3058-6968-43aa-a7db-252d0257fc54" ], "Accept-Language": [ "en-US" @@ -615,10 +615,10 @@ "no-cache" ], "x-ms-request-id": [ - "3d8f3121-3056-4bfc-b94c-d64532481699" + "06c2fbf1-786c-4a97-8010-a26cb5627ae1" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -630,16 +630,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-correlation-request-id": [ - "5af32c1e-ab1a-406e-b991-e43492648e0a" + "f389eb1a-1c0e-47b2-a75d-d29b4b004e12" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001703Z:5af32c1e-ab1a-406e-b991-e43492648e0a" + "WESTUS2:20201126T013413Z:f389eb1a-1c0e-47b2-a75d-d29b4b004e12" ], "Date": [ - "Tue, 10 Nov 2020 00:17:03 GMT" + "Thu, 26 Nov 2020 01:34:12 GMT" ], "Content-Length": [ "552" @@ -651,17 +651,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e5c02a3-26b7-4446-b35c-60819bb02847" + "82dc916e-fada-4354-ae67-1166d463d5d0" ], "Accept-Language": [ "en-US" @@ -681,10 +681,10 @@ "no-cache" ], "x-ms-request-id": [ - "afcc3942-2bbd-449e-b926-2b37fe9e06c7" + "fe2802a9-ab3c-42f1-baf3-3164086d3c67" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,16 +696,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-correlation-request-id": [ - "18967df5-ac0f-438d-9cae-850e4facb3c3" + "69a916ae-ab76-431b-99e0-aaf730a3afae" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001733Z:18967df5-ac0f-438d-9cae-850e4facb3c3" + "WESTUS2:20201126T013443Z:69a916ae-ab76-431b-99e0-aaf730a3afae" ], "Date": [ - "Tue, 10 Nov 2020 00:17:32 GMT" + "Thu, 26 Nov 2020 01:34:42 GMT" ], "Content-Length": [ "552" @@ -717,17 +717,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8144b85-9471-40a6-9510-d07108d185c7" + "dd4809b0-0848-4ee3-9e4d-fee53cb7c64f" ], "Accept-Language": [ "en-US" @@ -747,10 +747,10 @@ "no-cache" ], "x-ms-request-id": [ - "071b68ce-50d5-44ac-9489-960ad4074172" + "cd8efb52-85f0-459c-b45a-8f48869b32b8" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,16 +762,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-correlation-request-id": [ - "7fa0794c-5680-4f66-8735-cae8fedff1d5" + "5d3737f2-7183-4438-b494-f52d794432a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001803Z:7fa0794c-5680-4f66-8735-cae8fedff1d5" + "WESTUS2:20201126T013513Z:5d3737f2-7183-4438-b494-f52d794432a5" ], "Date": [ - "Tue, 10 Nov 2020 00:18:03 GMT" + "Thu, 26 Nov 2020 01:35:13 GMT" ], "Content-Length": [ "552" @@ -783,17 +783,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49a6b833-210b-4fed-9f85-186f03eab7fe" + "37498130-0b2a-40cd-ab03-da715838258e" ], "Accept-Language": [ "en-US" @@ -813,10 +813,10 @@ "no-cache" ], "x-ms-request-id": [ - "c70cd27e-4bfd-49a9-977b-3b591ba01264" + "6094dbff-d16d-4fd5-a49a-8384b3516169" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,16 +828,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-correlation-request-id": [ - "25b898ba-c3d6-44a7-a3b6-b77a243c605b" + "bc80fed0-c560-443b-bf21-092a40d11a46" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001834Z:25b898ba-c3d6-44a7-a3b6-b77a243c605b" + "WESTUS2:20201126T013543Z:bc80fed0-c560-443b-bf21-092a40d11a46" ], "Date": [ - "Tue, 10 Nov 2020 00:18:33 GMT" + "Thu, 26 Nov 2020 01:35:43 GMT" ], "Content-Length": [ "552" @@ -849,17 +849,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7943abdb-db44-46af-8413-2284a6f83322" + "ae0223c7-b4bd-4538-b272-51bae695ac03" ], "Accept-Language": [ "en-US" @@ -879,10 +879,10 @@ "no-cache" ], "x-ms-request-id": [ - "eb3b91c0-ead6-42a8-ad81-82d4577bf14c" + "afd0b0ca-c419-4a70-98fb-b6d8bf561bd3" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -890,86 +890,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "7ab813c4-1805-4791-9420-ad4a46ec58ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T001904Z:7ab813c4-1805-4791-9420-ad4a46ec58ec" - ], - "Date": [ - "Tue, 10 Nov 2020 00:19:03 GMT" - ], - "Content-Length": [ - "552" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dc44353c-2d96-4431-9aa0-6ba73fdca3f7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1f7160b-99c9-4949-bc80-300798128b8b" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "11991" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], "x-ms-correlation-request-id": [ - "ed7ed585-0f88-4624-a145-dbfed80d1baa" + "43b61235-3d21-4951-aef7-c502e878642a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T001934Z:ed7ed585-0f88-4624-a145-dbfed80d1baa" + "WESTUS2:20201126T013613Z:43b61235-3d21-4951-aef7-c502e878642a" ], "Date": [ - "Tue, 10 Nov 2020 00:19:34 GMT" + "Thu, 26 Nov 2020 01:36:12 GMT" ], "Content-Length": [ "552" @@ -981,17 +915,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a40b826a-fc5e-4dc7-b89a-d49d6db9ae30" + "eaea8071-be50-4e17-a14d-eb038625c81f" ], "Accept-Language": [ "en-US" @@ -1011,10 +945,10 @@ "no-cache" ], "x-ms-request-id": [ - "ddc7d6fb-f644-40a5-94e3-3f5904eafe20" + "528df08f-9b35-4716-ad01-cee1ccd4b29c" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1026,82 +960,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "94235335-bd37-4ce6-8c91-934a3b7cd86b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T002004Z:94235335-bd37-4ce6-8c91-934a3b7cd86b" - ], - "Date": [ - "Tue, 10 Nov 2020 00:20:03 GMT" - ], - "Content-Length": [ - "552" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6e11b41c-df5d-4b0b-a1ac-8fc3c12a3a42" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "61e5e6c7-7b14-455b-bb95-5be6fb5a8d84" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11990" ], "x-ms-correlation-request-id": [ - "c467da53-b7e3-4613-9636-1250275707c9" + "dc7bc5a0-d351-41b8-838c-9446fd380233" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002034Z:c467da53-b7e3-4613-9636-1250275707c9" + "WESTUS2:20201126T013644Z:dc7bc5a0-d351-41b8-838c-9446fd380233" ], "Date": [ - "Tue, 10 Nov 2020 00:20:33 GMT" + "Thu, 26 Nov 2020 01:36:43 GMT" ], "Content-Length": [ "552" @@ -1113,17 +981,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b601222d-f88a-473d-ae5b-b3a3c796256f" + "9927d52a-4c03-469d-8160-32412a4eeb8c" ], "Accept-Language": [ "en-US" @@ -1143,10 +1011,10 @@ "no-cache" ], "x-ms-request-id": [ - "2ee06066-f710-4145-94dc-d0a7e4e2d434" + "ea273263-1b5a-434c-ad5f-f1e799501d1c" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,16 +1026,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-correlation-request-id": [ - "62ca1d5e-ee85-47c4-9af4-f819294502f0" + "28cdacb1-f284-4412-a042-7818cad6ded7" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002104Z:62ca1d5e-ee85-47c4-9af4-f819294502f0" + "WESTUS2:20201126T013714Z:28cdacb1-f284-4412-a042-7818cad6ded7" ], "Date": [ - "Tue, 10 Nov 2020 00:21:04 GMT" + "Thu, 26 Nov 2020 01:37:14 GMT" ], "Content-Length": [ "552" @@ -1179,17 +1047,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc4643ab-6700-4e84-9949-82dd6964d69c" + "5c54b719-1b8e-4073-85d5-a59e8024f84f" ], "Accept-Language": [ "en-US" @@ -1209,10 +1077,10 @@ "no-cache" ], "x-ms-request-id": [ - "cd775b21-2862-4546-9085-9626895a1848" + "5e40e656-6b6b-4a0e-adcf-287408103bf2" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,16 +1092,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-correlation-request-id": [ - "32be67fd-d91a-4d67-b5aa-ff97f3589ee7" + "d5e22c03-12d2-49d1-a252-f9733ae2432c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002134Z:32be67fd-d91a-4d67-b5aa-ff97f3589ee7" + "WESTUS2:20201126T013744Z:d5e22c03-12d2-49d1-a252-f9733ae2432c" ], "Date": [ - "Tue, 10 Nov 2020 00:21:34 GMT" + "Thu, 26 Nov 2020 01:37:43 GMT" ], "Content-Length": [ "552" @@ -1245,17 +1113,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4fcad14-b509-4616-92ff-b10d073817ab" + "4983875a-d454-4de9-9fac-ea7b460607e7" ], "Accept-Language": [ "en-US" @@ -1275,10 +1143,10 @@ "no-cache" ], "x-ms-request-id": [ - "af4fa851-99f6-4975-ae50-0fe32db280ad" + "ef5409e4-7c41-4f37-859f-f34f8d452585" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1290,16 +1158,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11987" ], "x-ms-correlation-request-id": [ - "1cd82bab-bd7d-4f12-9ffd-7b7680dde3bf" + "4759242c-af70-46a2-8a0e-79400cccec0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002205Z:1cd82bab-bd7d-4f12-9ffd-7b7680dde3bf" + "WESTUS2:20201126T013814Z:4759242c-af70-46a2-8a0e-79400cccec0f" ], "Date": [ - "Tue, 10 Nov 2020 00:22:04 GMT" + "Thu, 26 Nov 2020 01:38:13 GMT" ], "Content-Length": [ "552" @@ -1311,17 +1179,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/databases/default?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTIvZGF0YWJhc2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/databases/default?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODcvZGF0YWJhc2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"ERROR_RATE 0.00 INITIAL_SIZE 400\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"args\": \"RETENTION_POLICY 20\"\r\n },\r\n {\r\n \"name\": \"RediSearch\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f0e3e4cf-b7dc-45ea-a4db-e5443e161b39" + "436cf164-55e6-4dd1-b757-1c17560257b5" ], "Accept-Language": [ "en-US" @@ -1347,16 +1215,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/databases/default?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/databases/default?api-version=2020-10-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e7e4d4c4-ab8d-4dd9-b1fc-8fc7529bf5c9?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/bb4c0ef9-79b7-4c69-b7b2-48827f1d17b2?api-version=2020-10-01-preview" ], "x-ms-request-id": [ - "2a1b8b1a-9e0d-484e-878d-52773418d3ad" + "892356ac-61c1-4571-8a22-3c179f3bbc8e" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,13 +1239,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "6d57b474-b2d8-437b-8cab-ce2da70f9364" + "69d532d2-a2c5-4300-b151-cefdca79f040" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002205Z:6d57b474-b2d8-437b-8cab-ce2da70f9364" + "WESTUS2:20201126T013814Z:69d532d2-a2c5-4300-b151-cefdca79f040" ], "Date": [ - "Tue, 10 Nov 2020 00:22:05 GMT" + "Thu, 26 Nov 2020 01:38:14 GMT" ], "Content-Length": [ "762" @@ -1389,17 +1257,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"version\": \"1.4.5\"\r\n },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"version\": \"2.0.1\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"version\": \"1.4.5\"\r\n },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"version\": \"2.0.1\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "089e9eba-b8e1-470b-bd6b-e23473bb88a3" + "645e58b9-f614-4ded-99b8-783f5bcb64ac" ], "Accept-Language": [ "en-US" @@ -1419,16 +1287,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/operationresults/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/operationresults/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview" ], "x-ms-request-id": [ - "9fa95042-4a7a-485f-b72f-476ede948ca6" + "158cbcce-a2b0-49fe-9338-f8a07aa71bb1" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1443,13 +1311,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "62b4d5bb-3727-46c0-9154-d31895d27666" + "ebc61b3a-e68d-461d-b3e6-fae5228355ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002206Z:62b4d5bb-3727-46c0-9154-d31895d27666" + "WESTUS2:20201126T013815Z:ebc61b3a-e68d-461d-b3e6-fae5228355ef" ], "Date": [ - "Tue, 10 Nov 2020 00:22:05 GMT" + "Thu, 26 Nov 2020 01:38:14 GMT" ], "Content-Length": [ "552" @@ -1461,12 +1329,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin2752\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,10 +1353,10 @@ "no-cache" ], "x-ms-request-id": [ - "92b8c2fd-5733-43ed-bc81-c0b6ee868015" + "50627c87-fd05-4605-8d0b-a22b5ad0d685" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,19 +1368,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11986" ], "x-ms-correlation-request-id": [ - "b1ab47a3-70a8-45ce-b82d-e852a67d8f1a" + "0421ec2e-a191-44de-a605-0c26b628e88a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002236Z:b1ab47a3-70a8-45ce-b82d-e852a67d8f1a" + "WESTUS2:20201126T013845Z:0421ec2e-a191-44de-a605-0c26b628e88a" ], "Date": [ - "Tue, 10 Nov 2020 00:22:35 GMT" + "Thu, 26 Nov 2020 01:38:45 GMT" ], "Content-Length": [ - "309" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1521,12 +1389,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1545,10 +1413,10 @@ "no-cache" ], "x-ms-request-id": [ - "feedfaaa-d8a6-4b6f-8160-a44d9aa6d83e" + "f62f7685-9785-4fdb-86c3-8f0abb55b9a8" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1560,19 +1428,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11985" ], "x-ms-correlation-request-id": [ - "71f8be30-0533-4551-91c2-861cb75ce577" + "bd19125d-2e96-49b0-9092-b99bccbbe74f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002306Z:71f8be30-0533-4551-91c2-861cb75ce577" + "WESTUS2:20201126T013915Z:bd19125d-2e96-49b0-9092-b99bccbbe74f" ], "Date": [ - "Tue, 10 Nov 2020 00:23:06 GMT" + "Thu, 26 Nov 2020 01:39:15 GMT" ], "Content-Length": [ - "309" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1581,12 +1449,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1605,10 +1473,10 @@ "no-cache" ], "x-ms-request-id": [ - "b59284df-596c-4c57-9a7d-2ac68a7b6306" + "cf386768-3672-4620-8871-2c05969028cd" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1620,19 +1488,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11984" ], "x-ms-correlation-request-id": [ - "7fb2c63c-6379-4448-824b-9954a229820e" + "82d9da60-6e59-4676-9e82-5f525762e70c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002336Z:7fb2c63c-6379-4448-824b-9954a229820e" + "WESTUS2:20201126T013945Z:82d9da60-6e59-4676-9e82-5f525762e70c" ], "Date": [ - "Tue, 10 Nov 2020 00:23:36 GMT" + "Thu, 26 Nov 2020 01:39:45 GMT" ], "Content-Length": [ - "309" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1641,12 +1509,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1665,10 +1533,10 @@ "no-cache" ], "x-ms-request-id": [ - "09cc67cb-0c0e-4d78-b942-7d207ddcbc1b" + "ca3ffc63-6b09-49ef-af27-b13a7b762dd7" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,19 +1548,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11983" ], "x-ms-correlation-request-id": [ - "23e5b0d5-615d-4cec-b627-5c653b4df8f5" + "c6e52880-dc3b-4a83-b906-d6f34c6f966b" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002406Z:23e5b0d5-615d-4cec-b627-5c653b4df8f5" + "WESTUS2:20201126T014016Z:c6e52880-dc3b-4a83-b906-d6f34c6f966b" ], "Date": [ - "Tue, 10 Nov 2020 00:24:06 GMT" + "Thu, 26 Nov 2020 01:40:15 GMT" ], "Content-Length": [ - "309" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1701,12 +1569,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1725,10 +1593,10 @@ "no-cache" ], "x-ms-request-id": [ - "73ec4d9b-dd03-4986-b849-464e00eed47a" + "2aa298c5-75e0-4991-8a1c-017c646cc54b" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1736,83 +1604,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "1c63345c-8a00-4ecc-9ec0-2facff647d82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T002436Z:1c63345c-8a00-4ecc-9ec0-2facff647d82" - ], - "Date": [ - "Tue, 10 Nov 2020 00:24:35 GMT" - ], - "Content-Length": [ - "309" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d310f3d4-06dd-4a77-8548-791c6cbf7d2b" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "11982" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], "x-ms-correlation-request-id": [ - "4f3cd03b-bd8f-4492-aa16-1560a108f8ba" + "2aaf4c53-dc66-404e-8bb2-854e6e9ed33d" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002506Z:4f3cd03b-bd8f-4492-aa16-1560a108f8ba" + "WESTUS2:20201126T014046Z:2aaf4c53-dc66-404e-8bb2-854e6e9ed33d" ], "Date": [ - "Tue, 10 Nov 2020 00:25:06 GMT" + "Thu, 26 Nov 2020 01:40:45 GMT" ], "Content-Length": [ - "309" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1821,12 +1629,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1845,10 +1653,10 @@ "no-cache" ], "x-ms-request-id": [ - "ef84d1e6-7a0b-46ae-a588-40ec149b7d59" + "beffc7dd-5d99-4af7-aac3-be8e4681c715" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1860,19 +1668,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11981" ], "x-ms-correlation-request-id": [ - "0b4642ff-72c0-4e5b-8f61-a6cdec4bb38a" + "b833588b-dd6b-4383-980f-a93b3cd694bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002537Z:0b4642ff-72c0-4e5b-8f61-a6cdec4bb38a" + "WESTUS2:20201126T014116Z:b833588b-dd6b-4383-980f-a93b3cd694bb" ], "Date": [ - "Tue, 10 Nov 2020 00:25:36 GMT" + "Thu, 26 Nov 2020 01:41:16 GMT" ], "Content-Length": [ - "309" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1881,12 +1689,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1905,10 +1713,10 @@ "no-cache" ], "x-ms-request-id": [ - "ba16c1eb-9a62-4c7a-9492-842ae7e29747" + "2565f27e-7392-4933-b16e-670c61281d52" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1920,76 +1728,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "5ff1667a-ab12-4a6f-ad73-58777abf77f7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T002607Z:5ff1667a-ab12-4a6f-ad73-58777abf77f7" - ], - "Date": [ - "Tue, 10 Nov 2020 00:26:06 GMT" - ], - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "da6809c7-14dc-49ec-bad9-deb41807aa1c" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11980" ], "x-ms-correlation-request-id": [ - "650f0cb1-878f-4c73-95ef-072288987240" + "b2a45ef1-42c0-4c70-869f-5585a90b4022" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002637Z:650f0cb1-878f-4c73-95ef-072288987240" + "WESTUS2:20201126T014146Z:b2a45ef1-42c0-4c70-869f-5585a90b4022" ], "Date": [ - "Tue, 10 Nov 2020 00:26:36 GMT" + "Thu, 26 Nov 2020 01:41:46 GMT" ], "Content-Length": [ "320" @@ -2001,12 +1749,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2025,10 +1773,10 @@ "no-cache" ], "x-ms-request-id": [ - "89c04500-7e9e-47f2-be8b-30fbc0cdfe71" + "7aeb12af-35b5-4877-a353-e6b750ef082b" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,16 +1788,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11979" ], "x-ms-correlation-request-id": [ - "44f76409-86ca-45cc-a030-1b76f31bee3a" + "57de541e-f3bf-47c5-8e60-43bde8a21739" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002710Z:44f76409-86ca-45cc-a030-1b76f31bee3a" + "WESTUS2:20201126T014216Z:57de541e-f3bf-47c5-8e60-43bde8a21739" ], "Date": [ - "Tue, 10 Nov 2020 00:27:10 GMT" + "Thu, 26 Nov 2020 01:42:16 GMT" ], "Content-Length": [ "320" @@ -2061,12 +1809,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2085,10 +1833,10 @@ "no-cache" ], "x-ms-request-id": [ - "b0654f95-9b9a-4e29-853e-8e535b9d7c3e" + "98712adc-1eea-42ff-b60a-cd06440a1948" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2100,16 +1848,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11978" ], "x-ms-correlation-request-id": [ - "24ea8f74-f190-4147-96a4-970d32f4cd92" + "47b1e807-5d85-41a8-8995-e34532247b6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002740Z:24ea8f74-f190-4147-96a4-970d32f4cd92" + "WESTUS2:20201126T014246Z:47b1e807-5d85-41a8-8995-e34532247b6d" ], "Date": [ - "Tue, 10 Nov 2020 00:27:40 GMT" + "Thu, 26 Nov 2020 01:42:46 GMT" ], "Content-Length": [ "320" @@ -2121,12 +1869,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,10 +1893,10 @@ "no-cache" ], "x-ms-request-id": [ - "c6c1efd6-69e7-4103-888b-dee53441f885" + "0c4751f5-536c-4a5d-8fc0-8f5561f346cd" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,16 +1908,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11977" ], "x-ms-correlation-request-id": [ - "b9489952-1e8c-4a61-ba4d-88e09fcda67f" + "16ead579-7b5b-4b1a-bdeb-2bd68e2f921c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002810Z:b9489952-1e8c-4a61-ba4d-88e09fcda67f" + "WESTUS2:20201126T014317Z:16ead579-7b5b-4b1a-bdeb-2bd68e2f921c" ], "Date": [ - "Tue, 10 Nov 2020 00:28:09 GMT" + "Thu, 26 Nov 2020 01:43:16 GMT" ], "Content-Length": [ "320" @@ -2181,12 +1929,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2205,10 +1953,10 @@ "no-cache" ], "x-ms-request-id": [ - "83369e48-0e89-4d5d-b59e-df6e9e0b5387" + "5ced833c-1591-42fb-9008-761a1d3842a8" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2220,16 +1968,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11976" ], "x-ms-correlation-request-id": [ - "def2291a-82ba-4cd7-b3ae-b986a485bc26" + "d6a1742b-d13a-4905-9c10-2f85be75360c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002841Z:def2291a-82ba-4cd7-b3ae-b986a485bc26" + "WESTUS2:20201126T014347Z:d6a1742b-d13a-4905-9c10-2f85be75360c" ], "Date": [ - "Tue, 10 Nov 2020 00:28:40 GMT" + "Thu, 26 Nov 2020 01:43:46 GMT" ], "Content-Length": [ "320" @@ -2241,12 +1989,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2265,10 +2013,10 @@ "no-cache" ], "x-ms-request-id": [ - "742f4494-82d8-43cc-9cf5-508ddf4edfa9" + "b7acae0d-1402-4001-a18c-a7690bae4f8c" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2280,16 +2028,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11975" ], "x-ms-correlation-request-id": [ - "da9238e8-e85f-4aa3-a407-5e66794d262e" + "259fa4f8-3719-4c71-9d2f-02b91d90f1d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002911Z:da9238e8-e85f-4aa3-a407-5e66794d262e" + "WESTUS2:20201126T014417Z:259fa4f8-3719-4c71-9d2f-02b91d90f1d2" ], "Date": [ - "Tue, 10 Nov 2020 00:29:10 GMT" + "Thu, 26 Nov 2020 01:44:16 GMT" ], "Content-Length": [ "320" @@ -2301,12 +2049,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,10 +2073,10 @@ "no-cache" ], "x-ms-request-id": [ - "1fab431f-a326-4aec-895c-ab3c08b3008f" + "267049d6-32a1-4c9d-9b2a-6a3f7b2c79c0" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2340,16 +2088,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11974" ], "x-ms-correlation-request-id": [ - "aeb1dc6e-0cb3-4fc5-87b3-274e22260c84" + "47b67269-4963-4f6a-9c11-6873298491ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T002941Z:aeb1dc6e-0cb3-4fc5-87b3-274e22260c84" + "WESTUS2:20201126T014447Z:47b67269-4963-4f6a-9c11-6873298491ff" ], "Date": [ - "Tue, 10 Nov 2020 00:29:40 GMT" + "Thu, 26 Nov 2020 01:44:47 GMT" ], "Content-Length": [ "320" @@ -2361,12 +2109,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2385,10 +2133,10 @@ "no-cache" ], "x-ms-request-id": [ - "54e2dd2f-ad65-4c30-90d3-3f59ef013460" + "2639133b-727a-4cf3-b850-071d18fb0557" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2396,80 +2144,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "bd2d1ee2-4b36-4e5a-b2d5-1f0d075d7bca" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T003011Z:bd2d1ee2-4b36-4e5a-b2d5-1f0d075d7bca" - ], - "Date": [ - "Tue, 10 Nov 2020 00:30:11 GMT" - ], - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fa69db88-be58-4650-9976-acb5be26f270" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "11973" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], "x-ms-correlation-request-id": [ - "55e8156f-6a4f-4015-90b5-94c752234b82" + "6aa3b5c4-ce5d-4e17-b48b-cfffe9b631e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003041Z:55e8156f-6a4f-4015-90b5-94c752234b82" + "WESTUS2:20201126T014517Z:6aa3b5c4-ce5d-4e17-b48b-cfffe9b631e5" ], "Date": [ - "Tue, 10 Nov 2020 00:30:41 GMT" + "Thu, 26 Nov 2020 01:45:16 GMT" ], "Content-Length": [ "320" @@ -2481,12 +2169,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2505,10 +2193,10 @@ "no-cache" ], "x-ms-request-id": [ - "78e440c0-8cb5-403f-95b4-86737c05157e" + "25ece863-a155-4871-851e-a7c0f939b758" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2520,16 +2208,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11972" ], "x-ms-correlation-request-id": [ - "78579c06-427c-4121-b1da-6474c2a5517d" + "3c05ea65-403a-43b7-aa3d-f7f68938a503" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003111Z:78579c06-427c-4121-b1da-6474c2a5517d" + "WESTUS2:20201126T014547Z:3c05ea65-403a-43b7-aa3d-f7f68938a503" ], "Date": [ - "Tue, 10 Nov 2020 00:31:10 GMT" + "Thu, 26 Nov 2020 01:45:47 GMT" ], "Content-Length": [ "320" @@ -2541,12 +2229,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2565,10 +2253,10 @@ "no-cache" ], "x-ms-request-id": [ - "07e9f12a-ecaa-4788-b7bc-a4cbc0b20da3" + "f864bb70-f200-4be9-a763-123eadb2ad18" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2580,16 +2268,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11971" ], "x-ms-correlation-request-id": [ - "e3e26d61-8a51-430a-bd5a-5b5ba4407d95" + "6e44c484-4078-41de-9cb3-3902b0cae68f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003141Z:e3e26d61-8a51-430a-bd5a-5b5ba4407d95" + "WESTUS2:20201126T014618Z:6e44c484-4078-41de-9cb3-3902b0cae68f" ], "Date": [ - "Tue, 10 Nov 2020 00:31:41 GMT" + "Thu, 26 Nov 2020 01:46:17 GMT" ], "Content-Length": [ "320" @@ -2601,12 +2289,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2625,10 +2313,10 @@ "no-cache" ], "x-ms-request-id": [ - "c9affc7c-c81a-429b-a934-97631bed4f02" + "a6edef12-8fb0-42ba-a85d-798ee14c533c" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2640,16 +2328,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11970" ], "x-ms-correlation-request-id": [ - "cdb6c722-f26d-4a60-a8e5-c26c90ff10fc" + "4f169e44-5aff-485c-ba99-d437c5a906c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003211Z:cdb6c722-f26d-4a60-a8e5-c26c90ff10fc" + "WESTUS2:20201126T014648Z:4f169e44-5aff-485c-ba99-d437c5a906c3" ], "Date": [ - "Tue, 10 Nov 2020 00:32:11 GMT" + "Thu, 26 Nov 2020 01:46:47 GMT" ], "Content-Length": [ "320" @@ -2661,12 +2349,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,10 +2373,10 @@ "no-cache" ], "x-ms-request-id": [ - "7549e0f2-5030-45b1-9320-29407685e833" + "da316c80-a6ac-4f5e-b3ac-b70c3f1f75a3" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2696,20 +2384,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], "x-ms-correlation-request-id": [ - "c717d3da-9a36-47e4-99fd-b954342954f0" + "9147f414-000c-46da-8f31-fe0187540659" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003241Z:c717d3da-9a36-47e4-99fd-b954342954f0" + "WESTUS2:20201126T014718Z:9147f414-000c-46da-8f31-fe0187540659" ], "Date": [ - "Tue, 10 Nov 2020 00:32:41 GMT" + "Thu, 26 Nov 2020 01:47:17 GMT" ], "Content-Length": [ "320" @@ -2721,12 +2409,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2745,10 +2433,10 @@ "no-cache" ], "x-ms-request-id": [ - "12ec9332-974e-40f4-beea-f4eefb0bb9b8" + "6168e530-fcca-4daf-80a1-cf9cefb78a3e" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2760,16 +2448,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11968" ], "x-ms-correlation-request-id": [ - "52cda8d4-6879-46b4-939f-b18e400291d4" + "3dc11e4d-933e-47f5-ac43-0648d531eb8a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003312Z:52cda8d4-6879-46b4-939f-b18e400291d4" + "WESTUS2:20201126T014748Z:3dc11e4d-933e-47f5-ac43-0648d531eb8a" ], "Date": [ - "Tue, 10 Nov 2020 00:33:11 GMT" + "Thu, 26 Nov 2020 01:47:48 GMT" ], "Content-Length": [ "320" @@ -2781,12 +2469,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,10 +2493,10 @@ "no-cache" ], "x-ms-request-id": [ - "911d7b1d-20fd-42fe-9570-2d6339413270" + "02969504-b923-4c7d-8530-25a094dd2f08" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2820,16 +2508,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11967" ], "x-ms-correlation-request-id": [ - "5ad64c61-1ba9-4b78-bb88-b4daf17cc8bb" + "8aa8e84c-9a1f-44a5-8b01-350ff403e462" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003342Z:5ad64c61-1ba9-4b78-bb88-b4daf17cc8bb" + "WESTUS2:20201126T014818Z:8aa8e84c-9a1f-44a5-8b01-350ff403e462" ], "Date": [ - "Tue, 10 Nov 2020 00:33:42 GMT" + "Thu, 26 Nov 2020 01:48:18 GMT" ], "Content-Length": [ "320" @@ -2841,12 +2529,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2865,10 +2553,10 @@ "no-cache" ], "x-ms-request-id": [ - "ba79cee4-8c19-42dd-83ff-271e27fb45de" + "9fab389c-f23b-4050-af78-a271e548ea32" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2880,16 +2568,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11966" ], "x-ms-correlation-request-id": [ - "e3d83fc2-d0ff-4310-8eaa-8a03db5e2647" + "f3148f9a-d6a6-4d85-9230-107e4fda2140" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003412Z:e3d83fc2-d0ff-4310-8eaa-8a03db5e2647" + "WESTUS2:20201126T014848Z:f3148f9a-d6a6-4d85-9230-107e4fda2140" ], "Date": [ - "Tue, 10 Nov 2020 00:34:12 GMT" + "Thu, 26 Nov 2020 01:48:47 GMT" ], "Content-Length": [ "320" @@ -2901,12 +2589,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2925,10 +2613,10 @@ "no-cache" ], "x-ms-request-id": [ - "714285ca-7be0-4eac-ab16-7179c7ec13a5" + "2a2f830a-9384-40e6-962e-47fee83a70a7" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2940,16 +2628,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11965" ], "x-ms-correlation-request-id": [ - "ffb5986d-4e32-4fb8-b37e-3cc93739a719" + "0e3e77ce-39da-4813-a174-b0a25f5b8a7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003442Z:ffb5986d-4e32-4fb8-b37e-3cc93739a719" + "WESTUS2:20201126T014918Z:0e3e77ce-39da-4813-a174-b0a25f5b8a7b" ], "Date": [ - "Tue, 10 Nov 2020 00:34:41 GMT" + "Thu, 26 Nov 2020 01:49:17 GMT" ], "Content-Length": [ "320" @@ -2961,12 +2649,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2985,10 +2673,10 @@ "no-cache" ], "x-ms-request-id": [ - "b5f2dbc3-f7ba-4c0c-a7e1-756d779bc8c0" + "2bd3251b-2004-4a8e-aedf-a2bd4e386add" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2996,23 +2684,23 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], "x-ms-correlation-request-id": [ - "769f9e46-c635-4e5b-9d85-b7069bf841f1" + "78a72858-c223-41fa-b48d-1d93cc154e2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003512Z:769f9e46-c635-4e5b-9d85-b7069bf841f1" + "WESTUS2:20201126T014948Z:78a72858-c223-41fa-b48d-1d93cc154e2f" ], "Date": [ - "Tue, 10 Nov 2020 00:35:12 GMT" + "Thu, 26 Nov 2020 01:49:48 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3021,12 +2709,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:30.0169017-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/operationresults/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODcvb3BlcmF0aW9ucmVzdWx0cy8yYjFhYjA4Ni00NGE1LTQ0OGItYjUwNy1iYThjZTFkMGMzOWU/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3044,71 +2732,17 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7bc76ac8-33f5-4fbc-b233-351858a8ee04" + "x-ms-failure-cause": [ + "gateway" ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "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-request-id": [ + "f1a7197a-3aeb-4cc0-a1ef-de66bd54c65c" ], "x-ms-correlation-request-id": [ - "bbd028c3-eed5-4810-8684-5d66ac8d48db" + "f1a7197a-3aeb-4cc0-a1ef-de66bd54c65c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003542Z:bbd028c3-eed5-4810-8684-5d66ac8d48db" - ], - "Date": [ - "Tue, 10 Nov 2020 00:35:42 GMT" - ], - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:25:38.0920952-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzE3YjM5MGYzLWYyMGQtNDNkNy05ZTAyLTQ0MmJiYjQxMTg5Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "82596f74-2d59-44cd-8f64-e3ea919f7b29" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "WESTUS2:20201126T014948Z:f1a7197a-3aeb-4cc0-a1ef-de66bd54c65c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3116,93 +2750,27 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "7434eb2c-b2c9-417c-aa41-3365a02a5e82" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T003612Z:7434eb2c-b2c9-417c-aa41-3365a02a5e82" - ], "Date": [ - "Tue, 10 Nov 2020 00:36:12 GMT" - ], - "Content-Length": [ - "319" + "Thu, 26 Nov 2020 01:49:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"name\": \"17b390f3-f20d-43d7-9e02-442bbb411892\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-09T16:22:05.9726356-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:03.9218138-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin9491/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin2752/operationresults/17b390f3-f20d-43d7-9e02-442bbb411892?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luOTQ5MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjI3NTIvb3BlcmF0aW9ucmVzdWx0cy8xN2IzOTBmMy1mMjBkLTQzZDctOWUwMi00NDJiYmI0MTE4OTI/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e40fc29b-9a04-4e44-8733-a20910fe9965" - ], - "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" - ], - "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": [ - "8fc09c42-8957-4e70-b3c4-127e2848aabb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201110T003613Z:8fc09c42-8957-4e70-b3c4-127e2848aabb" - ], - "Date": [ - "Tue, 10 Nov 2020 00:36:12 GMT" - ], - "Expires": [ - "-1" + "Content-Length": [ + "252" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287' under resource group 'RedisEnterpriseBegin4176' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 } ], "Names": { "BeginCreateFunctionalTest": [ - "RedisEnterpriseBegin9491", - "RedisEnterpriseBegin2752" + "RedisEnterpriseBegin4176", + "RedisEnterpriseBegin1287" ] }, "Variables": { diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json index 5428c6dc27ef..013712c2c94e 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a580f8d0-93b1-4590-98fb-c4ebfab3751d" + "2cf3ddb5-d6d4-41f5-8b2e-c3091eb5a032" ], "Accept-Language": [ "en-US" @@ -33,16 +33,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview" ], "x-ms-request-id": [ - "22ce7399-bce6-4b84-b769-60cf345cca43" + "21cea69f-3b99-4246-9d60-e4d5b2552ecb" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,13 +57,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "29873a42-cdb7-46e1-9e23-d25b037e2289" + "bc72e65d-1a52-496f-bb5f-68ef4b5a44c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003620Z:29873a42-cdb7-46e1-9e23-d25b037e2289" + "WESTUS2:20201126T014956Z:bc72e65d-1a52-496f-bb5f-68ef4b5a44c2" ], "Date": [ - "Tue, 10 Nov 2020 00:36:20 GMT" + "Thu, 26 Nov 2020 01:49:56 GMT" ], "Content-Length": [ "542" @@ -75,12 +75,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8871\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate9588\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -99,10 +99,10 @@ "no-cache" ], "x-ms-request-id": [ - "4597978a-9841-4471-b353-15a37da51fb4" + "68ae1498-7055-4c71-b8da-79c83ee20e6b" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,13 +117,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "219db5c7-1d52-4bd2-8122-b4798c077d26" + "e314e01f-4851-4856-b0e5-7019eb201991" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003651Z:219db5c7-1d52-4bd2-8122-b4798c077d26" + "WESTUS2:20201126T015026Z:e314e01f-4851-4856-b0e5-7019eb201991" ], "Date": [ - "Tue, 10 Nov 2020 00:36:50 GMT" + "Thu, 26 Nov 2020 01:50:26 GMT" ], "Content-Length": [ "320" @@ -135,12 +135,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -159,10 +159,10 @@ "no-cache" ], "x-ms-request-id": [ - "935660a5-9b05-4f1a-a5a9-e42e755eb57c" + "22204c69-4cd7-4751-a8ff-de9e358a1eb7" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,13 +177,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "f7879d8d-e938-4af0-bf52-4a6eec46e5e4" + "cf9225a1-f69c-435d-bb95-4ffea5b06934" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003721Z:f7879d8d-e938-4af0-bf52-4a6eec46e5e4" + "WESTUS2:20201126T015057Z:cf9225a1-f69c-435d-bb95-4ffea5b06934" ], "Date": [ - "Tue, 10 Nov 2020 00:37:20 GMT" + "Thu, 26 Nov 2020 01:50:56 GMT" ], "Content-Length": [ "320" @@ -195,12 +195,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -219,10 +219,10 @@ "no-cache" ], "x-ms-request-id": [ - "dadd6217-d010-4412-a814-a8bbf61861f1" + "00d0a4f7-8071-4ba3-80aa-70fb5537e12f" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,13 +237,13 @@ "11997" ], "x-ms-correlation-request-id": [ - "cf87dcaf-0f44-4fd9-a7f3-7807ac18221d" + "f83da45a-d0e7-4335-9572-da57fd9843bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003751Z:cf87dcaf-0f44-4fd9-a7f3-7807ac18221d" + "WESTUS2:20201126T015127Z:f83da45a-d0e7-4335-9572-da57fd9843bf" ], "Date": [ - "Tue, 10 Nov 2020 00:37:50 GMT" + "Thu, 26 Nov 2020 01:51:26 GMT" ], "Content-Length": [ "320" @@ -255,12 +255,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -279,10 +279,10 @@ "no-cache" ], "x-ms-request-id": [ - "6a7ef287-eb1f-4ae2-9f4b-94f21c08d040" + "bee0a38b-4d36-4316-bf31-a8675ca1e5a4" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,13 +297,13 @@ "11996" ], "x-ms-correlation-request-id": [ - "5b1ab322-fe48-4849-9ec5-9c9490ae6fb5" + "ae626d6b-32f3-476e-bdd3-46e308d2009b" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003821Z:5b1ab322-fe48-4849-9ec5-9c9490ae6fb5" + "WESTUS2:20201126T015157Z:ae626d6b-32f3-476e-bdd3-46e308d2009b" ], "Date": [ - "Tue, 10 Nov 2020 00:38:21 GMT" + "Thu, 26 Nov 2020 01:51:57 GMT" ], "Content-Length": [ "320" @@ -315,12 +315,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -339,10 +339,10 @@ "no-cache" ], "x-ms-request-id": [ - "d94bd29f-ca81-4af6-85f6-f2f4b44d1ffc" + "d5d772b4-0025-4c94-880c-b9677e206481" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,13 +357,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "e51bade2-fc99-439a-b83a-84be68f44035" + "2f6b219c-57da-496c-992b-fa07819785e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003851Z:e51bade2-fc99-439a-b83a-84be68f44035" + "WESTUS2:20201126T015227Z:2f6b219c-57da-496c-992b-fa07819785e1" ], "Date": [ - "Tue, 10 Nov 2020 00:38:51 GMT" + "Thu, 26 Nov 2020 01:52:26 GMT" ], "Content-Length": [ "320" @@ -375,12 +375,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -399,10 +399,10 @@ "no-cache" ], "x-ms-request-id": [ - "c8eec0cd-1adc-40b7-b049-86797e404b41" + "d0d2d891-a29d-45bb-9dc3-72f5a1180f14" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -417,13 +417,13 @@ "11994" ], "x-ms-correlation-request-id": [ - "5b6c9df7-ca89-44a9-875f-7593d5c619d3" + "28da791a-6309-4b2c-8e1b-a4539b4faad3" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003921Z:5b6c9df7-ca89-44a9-875f-7593d5c619d3" + "WESTUS2:20201126T015257Z:28da791a-6309-4b2c-8e1b-a4539b4faad3" ], "Date": [ - "Tue, 10 Nov 2020 00:39:21 GMT" + "Thu, 26 Nov 2020 01:52:56 GMT" ], "Content-Length": [ "320" @@ -435,12 +435,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -459,10 +459,10 @@ "no-cache" ], "x-ms-request-id": [ - "919c3cbd-a215-4020-94e6-38c60935fd0b" + "652cde85-6503-4b2c-9096-46ec8c94f563" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,13 +477,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "add61cd4-516b-42d3-a94f-1e035e55c313" + "fd1ab4d4-b612-40a7-887f-f80d3f9659fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003951Z:add61cd4-516b-42d3-a94f-1e035e55c313" + "WESTUS2:20201126T015327Z:fd1ab4d4-b612-40a7-887f-f80d3f9659fd" ], "Date": [ - "Tue, 10 Nov 2020 00:39:50 GMT" + "Thu, 26 Nov 2020 01:53:27 GMT" ], "Content-Length": [ "320" @@ -495,12 +495,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -519,10 +519,10 @@ "no-cache" ], "x-ms-request-id": [ - "6cd2e607-2ac0-40ed-9158-c2646926d4b8" + "ef131ec7-69ee-4873-ae4a-a0ccf2a5981b" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,13 +537,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "4d5fbffb-b610-48c4-8cfb-0d1bf9b6710e" + "1e4f0cd6-56c4-4b82-a805-9c57381a36dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004021Z:4d5fbffb-b610-48c4-8cfb-0d1bf9b6710e" + "WESTUS2:20201126T015357Z:1e4f0cd6-56c4-4b82-a805-9c57381a36dc" ], "Date": [ - "Tue, 10 Nov 2020 00:40:21 GMT" + "Thu, 26 Nov 2020 01:53:57 GMT" ], "Content-Length": [ "320" @@ -555,12 +555,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -579,10 +579,10 @@ "no-cache" ], "x-ms-request-id": [ - "1e41b546-12bc-4f61-9c66-a62af9db05cc" + "61d81f0c-3ea0-4440-9a09-5eb6fa811da3" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -597,13 +597,13 @@ "11991" ], "x-ms-correlation-request-id": [ - "6c0846bb-4256-4ad0-910c-5c2359a23fa3" + "de1c9c2e-7c02-4f2e-a174-b2e2b6bfc4bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004051Z:6c0846bb-4256-4ad0-910c-5c2359a23fa3" + "WESTUS2:20201126T015427Z:de1c9c2e-7c02-4f2e-a174-b2e2b6bfc4bf" ], "Date": [ - "Tue, 10 Nov 2020 00:40:51 GMT" + "Thu, 26 Nov 2020 01:54:27 GMT" ], "Content-Length": [ "320" @@ -615,12 +615,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,10 +639,10 @@ "no-cache" ], "x-ms-request-id": [ - "56d1d79a-ec0c-42ff-947a-1cf0db07abba" + "a2deccad-6de4-4f02-be3a-9382c9469ab5" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,13 +657,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "c94b3a92-3e22-4cda-8479-fd66d620acf5" + "fa3566a6-8b49-4cc2-9699-40db902420cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004122Z:c94b3a92-3e22-4cda-8479-fd66d620acf5" + "WESTUS2:20201126T015458Z:fa3566a6-8b49-4cc2-9699-40db902420cf" ], "Date": [ - "Tue, 10 Nov 2020 00:41:21 GMT" + "Thu, 26 Nov 2020 01:54:57 GMT" ], "Content-Length": [ "320" @@ -675,12 +675,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -699,10 +699,10 @@ "no-cache" ], "x-ms-request-id": [ - "2966d0a2-409a-49e9-91da-abd2e8f29b97" + "d2f8a66f-8a0b-4b34-83f6-9bfc80a3fc47" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,13 +717,13 @@ "11989" ], "x-ms-correlation-request-id": [ - "3343695b-0162-4f33-80bf-dfe225b7b8fd" + "255ee3dc-80e8-4e4b-bb30-3d80798f3741" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004152Z:3343695b-0162-4f33-80bf-dfe225b7b8fd" + "WESTUS2:20201126T015528Z:255ee3dc-80e8-4e4b-bb30-3d80798f3741" ], "Date": [ - "Tue, 10 Nov 2020 00:41:51 GMT" + "Thu, 26 Nov 2020 01:55:27 GMT" ], "Content-Length": [ "320" @@ -735,12 +735,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:36:21.8842485-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzU0Y2M5YmZkLTk1ZGUtNDA2MC05MzdkLWQ2ZTE2OTI4YmYzMz9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,10 +759,10 @@ "no-cache" ], "x-ms-request-id": [ - "fa3a0cba-091e-4371-aa43-bcb92b177fa5" + "4a338d68-f774-4159-930a-7ecaab208bf6" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,13 +777,433 @@ "11988" ], "x-ms-correlation-request-id": [ - "08d4c1cd-40e4-4934-b1f2-f90ccae676c8" + "bff05d37-9b5d-4f8c-8a81-14546c76ed1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004222Z:08d4c1cd-40e4-4934-b1f2-f90ccae676c8" + "WESTUS2:20201126T015558Z:bff05d37-9b5d-4f8c-8a81-14546c76ed1a" ], "Date": [ - "Tue, 10 Nov 2020 00:42:21 GMT" + "Thu, 26 Nov 2020 01:55:57 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c1251b7-48a4-48ab-9aca-e93757ca3506" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "02a34a69-9b2d-426b-ae41-9ab5be457b1b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015628Z:02a34a69-9b2d-426b-ae41-9ab5be457b1b" + ], + "Date": [ + "Thu, 26 Nov 2020 01:56:27 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d2495e27-f39c-4cb8-aadb-8c9dec44f6dd" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "d107a2ea-2a13-42c5-84c1-e22b5c9fb81a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015658Z:d107a2ea-2a13-42c5-84c1-e22b5c9fb81a" + ], + "Date": [ + "Thu, 26 Nov 2020 01:56:58 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "25a6b441-21d1-4939-9830-0b21fd0b3307" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "c473465f-06bc-4cb4-8dee-07a1a0d26456" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015728Z:c473465f-06bc-4cb4-8dee-07a1a0d26456" + ], + "Date": [ + "Thu, 26 Nov 2020 01:57:28 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "79965d1b-dd20-4c15-9605-caa594b5ec67" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "b731d93b-38d5-4359-8a01-2149aab71614" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015758Z:b731d93b-38d5-4359-8a01-2149aab71614" + ], + "Date": [ + "Thu, 26 Nov 2020 01:57:58 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5876c4c3-e470-438d-8c7e-e165341d8e38" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "e8fe2a46-1e31-4a49-b088-253124da0c62" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015829Z:e8fe2a46-1e31-4a49-b088-253124da0c62" + ], + "Date": [ + "Thu, 26 Nov 2020 01:58:28 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e97e7092-1c74-459d-8453-fbf1591a948c" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "915f11e8-6081-4e86-b642-401197fb051d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015859Z:915f11e8-6081-4e86-b642-401197fb051d" + ], + "Date": [ + "Thu, 26 Nov 2020 01:58:58 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c2a82a1c-72d1-41ed-9b81-d158d7367dc0" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "193fff39-1e9a-4c00-ba6c-2a0e0c577e52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T015929Z:193fff39-1e9a-4c00-ba6c-2a0e0c577e52" + ], + "Date": [ + "Thu, 26 Nov 2020 01:59:28 GMT" ], "Content-Length": [ "319" @@ -795,12 +1215,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"name\": \"54cc9bfd-95de-4060-937d-d6e16928bf33\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-09T16:36:20.4728955-08:00\",\r\n \"endTime\": \"2020-11-09T16:41:53.6643419-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:27.6615619-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -819,10 +1239,10 @@ "no-cache" ], "x-ms-request-id": [ - "5e32da01-853d-431a-805f-0655b5372cc3" + "1a9926cb-eebd-43b7-ab8b-eb0e5f7fd6bc" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,16 +1254,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11980" ], "x-ms-correlation-request-id": [ - "09884092-3bf3-4729-b771-34db6761fbde" + "b624ad3b-4145-4019-8335-70100aaa46e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004222Z:09884092-3bf3-4729-b771-34db6761fbde" + "WESTUS2:20201126T015929Z:b624ad3b-4145-4019-8335-70100aaa46e5" ], "Date": [ - "Tue, 10 Nov 2020 00:42:21 GMT" + "Thu, 26 Nov 2020 01:59:29 GMT" ], "Content-Length": [ "579" @@ -855,17 +1275,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8871\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate9588\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MS9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OC9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e7e140dd-a628-4822-a138-7c1bcebf47db" + "5a04c850-93a0-4f51-ad60-54640f5d81ac" ], "Accept-Language": [ "en-US" @@ -891,16 +1311,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default?api-version=2020-10-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/b610e85b-f843-4a4a-9454-22ea4ce6923b?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2c0ccb84-1d3b-42a0-8ee0-0e1384b50dc4?api-version=2020-10-01-preview" ], "x-ms-request-id": [ - "3dd4af15-fdd2-49e6-8d17-68c88457afea" + "a5dd428b-fb6b-432a-af5f-919275bc0fd0" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -915,13 +1335,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "ae5f8d73-dc34-43bf-9a0b-80f5810cb039" + "58e77c17-349f-40c9-8977-47892199f731" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004222Z:ae5f8d73-dc34-43bf-9a0b-80f5810cb039" + "WESTUS2:20201126T015929Z:58e77c17-349f-40c9-8977-47892199f731" ], "Date": [ - "Tue, 10 Nov 2020 00:42:22 GMT" + "Thu, 26 Nov 2020 01:59:29 GMT" ], "Content-Length": [ "520" @@ -933,12 +1353,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MS9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OC9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -957,10 +1377,10 @@ "no-cache" ], "x-ms-request-id": [ - "9a4d2ab3-42fc-49e7-8df9-cbe7d6fbd381" + "b0d82d72-39bf-4c46-bf7d-d8d81efd24cc" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,16 +1392,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11979" ], "x-ms-correlation-request-id": [ - "2d07df1e-3be6-4497-bf9b-2ec02dd62355" + "ea6dca90-1708-4c28-9d38-b48ba1affb73" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004223Z:2d07df1e-3be6-4497-bf9b-2ec02dd62355" + "WESTUS2:20201126T015929Z:ea6dca90-1708-4c28-9d38-b48ba1affb73" ], "Date": [ - "Tue, 10 Nov 2020 00:42:22 GMT" + "Thu, 26 Nov 2020 01:59:29 GMT" ], "Content-Length": [ "452" @@ -993,17 +1413,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ac4fec2-c316-4af2-a643-70491698b62a" + "f83afac9-8ea1-48fd-a0c8-8e556c5d0263" ], "Accept-Language": [ "en-US" @@ -1023,16 +1443,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/operationresults/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/operationresults/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview" ], "x-ms-request-id": [ - "70fc90fa-1776-4d9c-972d-2a352ea88dce" + "903b0348-6837-49f7-904f-e75f547272dc" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,13 +1467,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "51a4e06e-46ca-4f57-8ced-8d94ac537b02" + "a60bdac3-c080-413d-aaa8-623801482c41" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004223Z:51a4e06e-46ca-4f57-8ced-8d94ac537b02" + "WESTUS2:20201126T015930Z:a60bdac3-c080-413d-aaa8-623801482c41" ], "Date": [ - "Tue, 10 Nov 2020 00:42:22 GMT" + "Thu, 26 Nov 2020 01:59:29 GMT" ], "Content-Length": [ "579" @@ -1065,12 +1485,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8871\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate9588\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1089,10 +1509,10 @@ "no-cache" ], "x-ms-request-id": [ - "406df0e1-0d46-486c-a556-b90a4e9e634d" + "65cfcb13-52c0-412c-83ff-b384eec5f931" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,20 +1520,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], "x-ms-correlation-request-id": [ - "84217117-33b4-4d12-84e7-6c04f7f2f517" + "ccfb324d-cd20-4f31-a710-dac03421b86f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004253Z:84217117-33b4-4d12-84e7-6c04f7f2f517" + "WESTUS2:20201126T020000Z:ccfb324d-cd20-4f31-a710-dac03421b86f" ], "Date": [ - "Tue, 10 Nov 2020 00:42:53 GMT" + "Thu, 26 Nov 2020 01:59:59 GMT" ], "Content-Length": [ "320" @@ -1125,12 +1545,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1149,10 +1569,10 @@ "no-cache" ], "x-ms-request-id": [ - "6f68f9e7-edc8-4a91-9696-f9734a0df360" + "ef3508e2-5fea-443b-a821-7f5e301d7559" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1164,16 +1584,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11977" ], "x-ms-correlation-request-id": [ - "e266502b-90d3-4aa0-a3ab-56e730fab250" + "d24019f6-cc98-47e4-9731-af7f4fbc4911" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004323Z:e266502b-90d3-4aa0-a3ab-56e730fab250" + "WESTUS2:20201126T020030Z:d24019f6-cc98-47e4-9731-af7f4fbc4911" ], "Date": [ - "Tue, 10 Nov 2020 00:43:23 GMT" + "Thu, 26 Nov 2020 02:00:29 GMT" ], "Content-Length": [ "320" @@ -1185,12 +1605,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,10 +1629,10 @@ "no-cache" ], "x-ms-request-id": [ - "6bd3a592-3da4-4615-9024-4628addee5d3" + "2e0442ad-c1eb-4cfb-b8f7-481d5e520363" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,16 +1644,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11976" ], "x-ms-correlation-request-id": [ - "a1ad6f12-8ed3-4f1f-826a-ea18489e0b25" + "00759327-3604-4567-9ffd-4e33f7dff098" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004354Z:a1ad6f12-8ed3-4f1f-826a-ea18489e0b25" + "WESTUS2:20201126T020100Z:00759327-3604-4567-9ffd-4e33f7dff098" ], "Date": [ - "Tue, 10 Nov 2020 00:43:53 GMT" + "Thu, 26 Nov 2020 02:00:59 GMT" ], "Content-Length": [ "320" @@ -1245,12 +1665,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1269,10 +1689,10 @@ "no-cache" ], "x-ms-request-id": [ - "cac46784-021d-43d4-94fc-1588667d36ad" + "76c7e373-0ff1-4795-a83d-4afcd163667b" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,16 +1704,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11975" ], "x-ms-correlation-request-id": [ - "41f34a81-4b40-44bd-a6e0-7f565edf6621" + "458b4891-3a5f-4bf7-a968-172555b169f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004424Z:41f34a81-4b40-44bd-a6e0-7f565edf6621" + "WESTUS2:20201126T020130Z:458b4891-3a5f-4bf7-a968-172555b169f4" ], "Date": [ - "Tue, 10 Nov 2020 00:44:23 GMT" + "Thu, 26 Nov 2020 02:01:30 GMT" ], "Content-Length": [ "320" @@ -1305,12 +1725,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1329,10 +1749,10 @@ "no-cache" ], "x-ms-request-id": [ - "c6e7d008-24da-48b2-842e-63dbc7ce0323" + "10ef89a1-c1ae-453c-960d-544e06092fdd" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1344,16 +1764,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11974" ], "x-ms-correlation-request-id": [ - "2a5e6737-a731-469b-b16c-ae43ce9b8817" + "274d52ad-b259-4826-97df-aa822b7bcab7" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004454Z:2a5e6737-a731-469b-b16c-ae43ce9b8817" + "WESTUS2:20201126T020200Z:274d52ad-b259-4826-97df-aa822b7bcab7" ], "Date": [ - "Tue, 10 Nov 2020 00:44:53 GMT" + "Thu, 26 Nov 2020 02:02:00 GMT" ], "Content-Length": [ "320" @@ -1365,12 +1785,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1389,10 +1809,10 @@ "no-cache" ], "x-ms-request-id": [ - "65f81d8e-09f8-4dac-b85d-0830773a83ee" + "09376738-f506-4f8e-bf19-97d53bcab575" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1404,16 +1824,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11973" ], "x-ms-correlation-request-id": [ - "59ec96b2-18b0-4224-bcc4-20e6a09ca38e" + "344ec397-533e-4dd1-8e7a-d18d45cf3995" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004524Z:59ec96b2-18b0-4224-bcc4-20e6a09ca38e" + "WESTUS2:20201126T020231Z:344ec397-533e-4dd1-8e7a-d18d45cf3995" ], "Date": [ - "Tue, 10 Nov 2020 00:45:23 GMT" + "Thu, 26 Nov 2020 02:02:30 GMT" ], "Content-Length": [ "320" @@ -1425,12 +1845,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1449,10 +1869,10 @@ "no-cache" ], "x-ms-request-id": [ - "a39470e1-aee8-47cc-93f1-75d3bcddf22b" + "bb7b84b8-f0ed-4934-bd2a-a10191d206d9" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,16 +1884,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11972" ], "x-ms-correlation-request-id": [ - "d20152f9-e3f1-4954-9519-e5b7e2e5d1db" + "dcf360e3-a8e4-4e6c-834d-b54832fde13b" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004554Z:d20152f9-e3f1-4954-9519-e5b7e2e5d1db" + "WESTUS2:20201126T020301Z:dcf360e3-a8e4-4e6c-834d-b54832fde13b" ], "Date": [ - "Tue, 10 Nov 2020 00:45:54 GMT" + "Thu, 26 Nov 2020 02:03:00 GMT" ], "Content-Length": [ "320" @@ -1485,12 +1905,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1509,10 +1929,10 @@ "no-cache" ], "x-ms-request-id": [ - "fae8ed89-51a3-46e3-a050-f07793fcd780" + "dd3e521a-04e2-4bf7-840d-e29b3acb87c2" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1520,20 +1940,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], "x-ms-correlation-request-id": [ - "c7e2f6c9-d47d-4373-9fb2-df6a7880e41a" + "802d502d-de83-4070-9084-9abeb8b91922" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004624Z:c7e2f6c9-d47d-4373-9fb2-df6a7880e41a" + "WESTUS2:20201126T020331Z:802d502d-de83-4070-9084-9abeb8b91922" ], "Date": [ - "Tue, 10 Nov 2020 00:46:23 GMT" + "Thu, 26 Nov 2020 02:03:30 GMT" ], "Content-Length": [ "320" @@ -1545,12 +1965,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1569,10 +1989,10 @@ "no-cache" ], "x-ms-request-id": [ - "621f17a9-f5fa-48dd-9974-d43c394bd308" + "2fa9cb78-b5cf-4c2d-b3e1-4d0d636b5ace" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,16 +2004,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11970" ], "x-ms-correlation-request-id": [ - "34fa5548-48ec-4348-b7b5-5ba5fe506188" + "1020ba71-3e52-436a-84f3-91f9fc51900e" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004654Z:34fa5548-48ec-4348-b7b5-5ba5fe506188" + "WESTUS2:20201126T020401Z:1020ba71-3e52-436a-84f3-91f9fc51900e" ], "Date": [ - "Tue, 10 Nov 2020 00:46:54 GMT" + "Thu, 26 Nov 2020 02:04:01 GMT" ], "Content-Length": [ "320" @@ -1605,12 +2025,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,10 +2049,10 @@ "no-cache" ], "x-ms-request-id": [ - "406b495f-0681-4a1b-9eae-3945956234be" + "e20e1dfb-6787-4d16-8ce8-3d120e155470" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1644,16 +2064,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11969" ], "x-ms-correlation-request-id": [ - "8fc0701f-5691-4ff8-87d9-4b047a97a538" + "ff0b7246-d265-4b7f-814e-6f662c31e234" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004724Z:8fc0701f-5691-4ff8-87d9-4b047a97a538" + "WESTUS2:20201126T020431Z:ff0b7246-d265-4b7f-814e-6f662c31e234" ], "Date": [ - "Tue, 10 Nov 2020 00:47:24 GMT" + "Thu, 26 Nov 2020 02:04:31 GMT" ], "Content-Length": [ "320" @@ -1665,12 +2085,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1689,10 +2109,10 @@ "no-cache" ], "x-ms-request-id": [ - "a8704da8-f2f8-4ac2-a97b-d8fdc9bdfd56" + "b45cd4ec-e2d5-458f-874e-fdd4044265cf" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,16 +2124,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11968" ], "x-ms-correlation-request-id": [ - "b5e9332d-eb68-40a5-b56c-ac7c77eb2156" + "f6aae3c5-d095-4854-bfc4-e0fc6bb00467" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004754Z:b5e9332d-eb68-40a5-b56c-ac7c77eb2156" + "WESTUS2:20201126T020501Z:f6aae3c5-d095-4854-bfc4-e0fc6bb00467" ], "Date": [ - "Tue, 10 Nov 2020 00:47:54 GMT" + "Thu, 26 Nov 2020 02:05:01 GMT" ], "Content-Length": [ "320" @@ -1725,12 +2145,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1749,10 +2169,10 @@ "no-cache" ], "x-ms-request-id": [ - "ab9a0c11-9cc8-4693-8ba1-d9010901947e" + "692aadf7-0be7-4157-b36a-6c00e0254634" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,16 +2184,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11967" ], "x-ms-correlation-request-id": [ - "73e995ca-6bcd-4cda-9d67-6492d7b9e899" + "bc4fc67f-6c6d-4cb6-8fc7-553cdb68cca7" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004825Z:73e995ca-6bcd-4cda-9d67-6492d7b9e899" + "WESTUS2:20201126T020532Z:bc4fc67f-6c6d-4cb6-8fc7-553cdb68cca7" ], "Date": [ - "Tue, 10 Nov 2020 00:48:24 GMT" + "Thu, 26 Nov 2020 02:05:31 GMT" ], "Content-Length": [ "320" @@ -1785,12 +2205,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1809,10 +2229,10 @@ "no-cache" ], "x-ms-request-id": [ - "7d2c1f3c-c3d1-4952-a450-656be8d7c022" + "d15b2828-3d3a-4dca-b4c8-8b960220ecf6" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,16 +2244,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11966" ], "x-ms-correlation-request-id": [ - "bf3e45d7-c9b6-4a5c-b95c-597af3abd81a" + "3e3708f7-9d4b-45f4-89d4-7c499d8fbc57" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004855Z:bf3e45d7-c9b6-4a5c-b95c-597af3abd81a" + "WESTUS2:20201126T020602Z:3e3708f7-9d4b-45f4-89d4-7c499d8fbc57" ], "Date": [ - "Tue, 10 Nov 2020 00:48:54 GMT" + "Thu, 26 Nov 2020 02:06:01 GMT" ], "Content-Length": [ "320" @@ -1845,12 +2265,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1869,10 +2289,10 @@ "no-cache" ], "x-ms-request-id": [ - "b0b5423c-f9d2-4302-84a8-a53e5985c201" + "8de5fd41-d366-4dae-a21a-60d2ad71b308" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1884,16 +2304,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11965" ], "x-ms-correlation-request-id": [ - "ffe45153-98d1-4e9d-b179-8e5970600050" + "78391d4f-a303-4a3f-b9cf-04d8d7b92b37" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004925Z:ffe45153-98d1-4e9d-b179-8e5970600050" + "WESTUS2:20201126T020632Z:78391d4f-a303-4a3f-b9cf-04d8d7b92b37" ], "Date": [ - "Tue, 10 Nov 2020 00:49:24 GMT" + "Thu, 26 Nov 2020 02:06:31 GMT" ], "Content-Length": [ "320" @@ -1905,12 +2325,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1929,10 +2349,10 @@ "no-cache" ], "x-ms-request-id": [ - "2979dc40-fff5-495f-9a67-9a9beb3dfde7" + "6cc4d614-a36a-47b8-aace-1262fb548410" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1940,20 +2360,80 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11964" + ], + "x-ms-correlation-request-id": [ + "87552090-f82f-49cb-bffe-b78ddfc0694f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T020702Z:87552090-f82f-49cb-bffe-b78ddfc0694f" + ], + "Date": [ + "Thu, 26 Nov 2020 02:07:01 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5917ea6-5014-49c7-919a-2d46d44a7eb4" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ - "57c075a9-68d8-4c03-a479-215427460843" + "bb50f85e-0e20-4438-8fca-662581c9b2be" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T004955Z:57c075a9-68d8-4c03-a479-215427460843" + "WESTUS2:20201126T020732Z:bb50f85e-0e20-4438-8fca-662581c9b2be" ], "Date": [ - "Tue, 10 Nov 2020 00:49:55 GMT" + "Thu, 26 Nov 2020 02:07:31 GMT" ], "Content-Length": [ "320" @@ -1965,12 +2445,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1989,10 +2469,10 @@ "no-cache" ], "x-ms-request-id": [ - "558dc11e-d5c0-4b2c-ba3a-7b44cb9d4cd1" + "57a55b80-d55c-4667-b39a-3fa8b18d465f" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,16 +2484,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11962" ], "x-ms-correlation-request-id": [ - "a9a66d4c-8e8e-4907-b980-bf0be6aed883" + "238974af-8f5a-4d10-a641-cbb9538c7ed6" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T005025Z:a9a66d4c-8e8e-4907-b980-bf0be6aed883" + "WESTUS2:20201126T020802Z:238974af-8f5a-4d10-a641-cbb9538c7ed6" ], "Date": [ - "Tue, 10 Nov 2020 00:50:25 GMT" + "Thu, 26 Nov 2020 02:08:02 GMT" ], "Content-Length": [ "320" @@ -2025,12 +2505,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2049,10 +2529,10 @@ "no-cache" ], "x-ms-request-id": [ - "c94a4832-d9c7-4917-9150-4904e82492e2" + "482c90a5-0816-4769-8f42-cc9eb3cac911" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2064,16 +2544,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11961" ], "x-ms-correlation-request-id": [ - "ce7a92d4-7fc3-4f14-8195-82abffeb8ffa" + "2d8d7cbf-1091-4e4d-8d14-093a1441e6d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T005055Z:ce7a92d4-7fc3-4f14-8195-82abffeb8ffa" + "WESTUS2:20201126T020832Z:2d8d7cbf-1091-4e4d-8d14-093a1441e6d3" ], "Date": [ - "Tue, 10 Nov 2020 00:50:54 GMT" + "Thu, 26 Nov 2020 02:08:32 GMT" ], "Content-Length": [ "320" @@ -2085,12 +2565,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:42:25.2309975-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,10 +2589,10 @@ "no-cache" ], "x-ms-request-id": [ - "d9d4e93e-979b-425d-9748-faf229d2b811" + "64c5d5f7-14a1-47d3-b4d9-36f0631c60e2" ], "x-rp-server-mvid": [ - "76c595a1-9744-4a1c-a3d4-d4f8fc236cf6" + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2124,19 +2604,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11960" ], "x-ms-correlation-request-id": [ - "b0a68c7c-7ec6-402d-8d91-fab04d9b2248" + "b242349c-898e-431e-8032-e16b618f40d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T005125Z:b0a68c7c-7ec6-402d-8d91-fab04d9b2248" + "WESTUS2:20201126T020902Z:b242349c-898e-431e-8032-e16b618f40d1" ], "Date": [ - "Tue, 10 Nov 2020 00:51:25 GMT" + "Thu, 26 Nov 2020 02:09:02 GMT" ], "Content-Length": [ - "319" + "320" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2145,12 +2625,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"name\": \"3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-09T16:42:23.2909781-08:00\",\r\n \"endTime\": \"2020-11-09T16:51:15.0371336-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871/operationresults/3bdeb2ce-ebbc-4c29-9267-75bdd98fa13d?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlODg3MS9vcGVyYXRpb25yZXN1bHRzLzNiZGViMmNlLWViYmMtNGMyOS05MjY3LTc1YmRkOThmYTEzZD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,17 +2648,71 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-request-id": [ - "3e4ba81a-d058-4708-93ca-29b0a173a38c" + "ce5a5a8f-da29-4065-895e-c513b8054b5f" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ - "3e4ba81a-d058-4708-93ca-29b0a173a38c" + "ce215547-a5bc-4362-b858-5a2b8c5fee7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T005126Z:3e4ba81a-d058-4708-93ca-29b0a173a38c" + "WESTUS2:20201126T020932Z:ce215547-a5bc-4362-b858-5a2b8c5fee7c" + ], + "Date": [ + "Thu, 26 Nov 2020 02:09:32 GMT" + ], + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5f5d8939-82e6-43eb-8b04-8bbe57b26764" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2186,21 +2720,87 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "c9ffabce-aca1-4117-b9de-10a74605dbbf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T021003Z:c9ffabce-aca1-4117-b9de-10a74605dbbf" + ], "Date": [ - "Tue, 10 Nov 2020 00:51:25 GMT" + "Thu, 26 Nov 2020 02:10:02 GMT" + ], + "Content-Length": [ + "319" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T18:09:57.0536479-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/operationresults/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OC9vcGVyYXRpb25yZXN1bHRzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Content-Length": [ - "266" + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "04abfccc-1793-4120-a214-6aa62974dbbe" + ], + "x-rp-server-mvid": [ + "f86edc6b-6a96-45c8-9297-8d7daae8142d" + ], + "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": [ + "79408b21-6fe9-452a-b87c-241caa92b154" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20201126T021003Z:79408b21-6fe9-452a-b87c-241caa92b154" + ], + "Date": [ + "Thu, 26 Nov 2020 02:10:02 GMT" + ], + "Expires": [ + "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate8871' under resource group 'RedisEnterpriseCreateUpdate5795' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 + "ResponseBody": "", + "StatusCode": 204 } ], "Names": {}, diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json index e80f6239c3da..f0fe1394d7b2 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13708b8a-8396-4e3c-82f8-d53b35443588" + "d90708a2-f65e-4473-81d7-6f8d14cf14f0" ], "Accept-Language": [ "en-US" @@ -30,13 +30,13 @@ "1199" ], "x-ms-request-id": [ - "14492d02-d98f-475c-990c-def6a298d225" + "665adcc0-b853-4a7b-9915-c434f5454661" ], "x-ms-correlation-request-id": [ - "14492d02-d98f-475c-990c-def6a298d225" + "665adcc0-b853-4a7b-9915-c434f5454661" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003616Z:14492d02-d98f-475c-990c-def6a298d225" + "WESTUS2:20201126T014952Z:665adcc0-b853-4a7b-9915-c434f5454661" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:36:16 GMT" + "Thu, 26 Nov 2020 01:49:51 GMT" ], "Content-Length": [ - "11262" + "11273" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,7 +57,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 }, { @@ -67,7 +67,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c5fad6-f307-45d1-aabf-17e0db46822e" + "1ff0d2f1-c7db-4d48-b633-2b781b2b44c7" ], "Accept-Language": [ "en-US" @@ -90,13 +90,13 @@ "11999" ], "x-ms-request-id": [ - "62b5363f-5a1c-4a36-baf3-15d0d070b3f0" + "535148b7-5770-4a56-bd89-85e611b6898e" ], "x-ms-correlation-request-id": [ - "62b5363f-5a1c-4a36-baf3-15d0d070b3f0" + "535148b7-5770-4a56-bd89-85e611b6898e" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003617Z:62b5363f-5a1c-4a36-baf3-15d0d070b3f0" + "WESTUS2:20201126T014952Z:535148b7-5770-4a56-bd89-85e611b6898e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:36:16 GMT" + "Thu, 26 Nov 2020 01:49:51 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,20 +114,20 @@ "-1" ], "Content-Length": [ - "11262" + "11273" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate5795?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate1275?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a803b3d6-1a3b-415d-a95a-8abeca250ab0" + "a629fa44-3ec5-4b63-b338-8a5c7671ede5" ], "Accept-Language": [ "en-US" @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "2bcb64fe-05c2-4a7f-ab31-460c921ee9a8" + "0a7c422c-48f2-4567-83c1-80f666efdea8" ], "x-ms-correlation-request-id": [ - "2bcb64fe-05c2-4a7f-ab31-460c921ee9a8" + "0a7c422c-48f2-4567-83c1-80f666efdea8" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003617Z:2bcb64fe-05c2-4a7f-ab31-460c921ee9a8" + "WESTUS2:20201126T014953Z:0a7c422c-48f2-4567-83c1-80f666efdea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:36:17 GMT" + "Thu, 26 Nov 2020 01:49:53 GMT" ], "Content-Length": [ "215" @@ -183,17 +183,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5795\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275\",\r\n \"name\": \"RedisEnterpriseCreateUpdate1275\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate5795?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTU3OTU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate1275?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c2e795c-30de-48fe-bc4c-d3f69d3016d2" + "b30d0863-ead4-4a89-b993-1d5e4a280d71" ], "Accept-Language": [ "en-US" @@ -216,13 +216,13 @@ "11998" ], "x-ms-request-id": [ - "3316f3d1-8dff-4cd0-9e53-0b79c879f54e" + "eb999e0e-7c39-41c8-add1-9e7c37891cc1" ], "x-ms-correlation-request-id": [ - "3316f3d1-8dff-4cd0-9e53-0b79c879f54e" + "eb999e0e-7c39-41c8-add1-9e7c37891cc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201110T003617Z:3316f3d1-8dff-4cd0-9e53-0b79c879f54e" + "WESTUS2:20201126T014953Z:eb999e0e-7c39-41c8-add1-9e7c37891cc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Tue, 10 Nov 2020 00:36:17 GMT" + "Thu, 26 Nov 2020 01:49:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -243,14 +243,14 @@ "215" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate5795\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5795\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275\",\r\n \"name\": \"RedisEnterpriseCreateUpdate1275\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": { ".ctor": [ - "RedisEnterpriseCreateUpdate5795", - "RedisEnterpriseCreateUpdate8871" + "RedisEnterpriseCreateUpdate1275", + "RedisEnterpriseCreateUpdate9588" ] }, "Variables": { From 631fda8393521b63245a07e8ba3c2fe772e9a174 Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Tue, 16 Feb 2021 22:52:35 -0800 Subject: [PATCH 5/8] Support new API version 2021-03-01 --- .../redisenterprise_resource-manager.txt | 6 +- .../AzSdk.RP.props | 2 +- .../CHANGELOG.md | 16 + .../src/Generated/DatabasesOperations.cs | 50 +- .../DatabasesOperationsExtensions.cs | 84 +- .../src/Generated/IDatabasesOperations.cs | 40 +- ...IGetOperations.cs => IOperationsStatus.cs} | 6 +- .../IPrivateEndpointConnectionsOperations.cs | 12 +- .../IPrivateLinkResourcesOperations.cs | 4 +- ...cs => IRedisEnterpriseManagementClient.cs} | 12 +- .../Generated/IRedisEnterpriseOperations.cs | 18 +- .../src/Generated/Models/AofFrequency.cs | 22 + .../Generated/Models/AzureEntityResource.cs | 5 +- .../src/Generated/Models/Cluster.cs | 12 +- .../src/Generated/Models/ClusterUpdate.cs | 5 +- .../src/Generated/Models/Database.cs | 10 +- .../src/Generated/Models/DatabaseUpdate.cs | 10 +- .../Models/ExportClusterParameters.cs | 4 +- .../Models/ImportClusterParameters.cs | 4 +- .../src/Generated/Models/Operation.cs | 5 +- .../src/Generated/Models/Persistence.cs | 83 ++ .../src/Generated/Models/ProxyResource.cs | 7 +- .../src/Generated/Models/RdbFrequency.cs | 23 + .../src/Generated/Models/Resource.cs | 5 +- .../src/Generated/Models/TlsVersion.cs | 23 + .../src/Generated/Models/TrackedResource.cs | 7 +- .../src/Generated/Operations.cs | 8 +- .../{GetOperations.cs => OperationsStatus.cs} | 16 +- ...sions.cs => OperationsStatusExtensions.cs} | 12 +- .../PrivateEndpointConnectionsOperations.cs | 22 +- ...EndpointConnectionsOperationsExtensions.cs | 28 +- .../PrivateLinkResourcesOperations.cs | 14 +- ...rivateLinkResourcesOperationsExtensions.cs | 12 +- ....cs => RedisEnterpriseManagementClient.cs} | 60 +- .../Generated/RedisEnterpriseOperations.cs | 28 +- .../RedisEnterpriseOperationsExtensions.cs | 40 +- ...dkInfo_RedisEnterpriseManagementClient.cs} | 14 +- ...ft.Azure.Management.RedisEnterprise.csproj | 22 +- .../src/Properties/AssemblyInfo.cs | 6 +- .../tests/DummyResponseDelegatingHandler.cs | 29 - ...nagement.RedisEnterpriseCache.Tests.csproj | 6 +- .../BeginCreateFunctionalTests.cs | 120 +- .../CreateUpdateDeleteFunctionalTests.cs | 49 +- .../RedisEnterpriseCacheManagementHelper.cs | 26 +- ...sEnterpriseCacheManagementTestUtilities.cs | 6 +- .../tests/ScenarioTests/TestsFixture.cs | 7 - .../BeginCreateFunctionalTest.json | 1164 +++++++++-------- .../CreateUpdateDeleteTest.json | 1158 +++++++--------- .../SessionRecords/TestsFixture/.ctor.json | 92 +- .../tests/Utility.cs | 48 - 50 files changed, 1729 insertions(+), 1733 deletions(-) create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/CHANGELOG.md rename sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/{IGetOperations.cs => IOperationsStatus.cs} (82%) rename sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/{IredisenterpriseClient.cs => IRedisEnterpriseManagementClient.cs} (88%) create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AofFrequency.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Persistence.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RdbFrequency.cs create mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TlsVersion.cs rename sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/{GetOperations.cs => OperationsStatus.cs} (93%) rename sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/{GetOperationsExtensions.cs => OperationsStatusExtensions.cs} (70%) rename sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/{redisenterpriseClient.cs => RedisEnterpriseManagementClient.cs} (80%) rename sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/{SdkInfo_redisEnterprise.cs => SdkInfo_RedisEnterpriseManagementClient.cs} (75%) delete mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs delete mode 100644 sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs diff --git a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt index 9e1ceb834581..2f9d33cf60d2 100644 --- a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt @@ -3,12 +3,12 @@ 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/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\repos\azure-sdk-for-net\sdk -2020-11-26 01:06:30 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\git\azure-sdk-for-net\sdk +2021-02-17 05:54:08 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 121e6178fc40ba22414be219f896db42a10bbc02 +Commit: 202d83c0febf4c8ed7229f6f1c6edfcfe635c36c AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props index 2c975fddf604..bfba4dcf316b 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props @@ -1,7 +1,7 @@ - RedisEnterpriseCache_2020-10-01-preview; + RedisEnterprise_2021-03-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/CHANGELOG.md b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/CHANGELOG.md new file mode 100644 index 000000000000..6a4e80a6c1cb --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/CHANGELOG.md @@ -0,0 +1,16 @@ +# Release Notes + +## Version 2.0.0 +_This SDK is based on REST API version **2021-03-01**_ +- Added support for enabling data persistence (preview) +- Added class to define possible values for minimum TLS version + +### Breaking changes +- Renamed all instances of redisenterpriseClient to RedisEnterpriseManagementClient +- Renamed all instances of ListByRedisEnterpriseCache to ListByCluster +- Renamed all instances of GetMethod to Get +- Replaced GetOperations class with OperationsStatus class + +## Version 1.0.0-preview +_This SDK is based on REST API version **2020-10-01-preview**_ +- Initial public release \ No newline at end of file diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs index b6c6c2a7aa74..e0e036e936d8 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// DatabasesOperations operations. /// - internal partial class DatabasesOperations : IServiceOperations, IDatabasesOperations + internal partial class DatabasesOperations : IServiceOperations, IDatabasesOperations { /// /// Initializes a new instance of the DatabasesOperations class. @@ -36,7 +36,7 @@ internal partial class DatabasesOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal DatabasesOperations(redisenterpriseClient client) + internal DatabasesOperations(RedisEnterpriseManagementClient client) { if (client == null) { @@ -46,15 +46,15 @@ internal DatabasesOperations(redisenterpriseClient client) } /// - /// Gets a reference to the redisenterpriseClient + /// Gets a reference to the RedisEnterpriseManagementClient /// - public redisenterpriseClient Client { get; private set; } + public RedisEnterpriseManagementClient Client { get; private set; } /// /// Gets all databases in the specified RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -245,7 +245,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Creates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -273,7 +273,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Updates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -301,7 +301,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Gets information about a database in a RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -330,7 +330,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -363,7 +363,7 @@ internal DatabasesOperations(redisenterpriseClient client) tracingParameters.Add("clusterName", clusterName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMethod", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -501,7 +501,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Deletes a single database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -526,7 +526,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Retrieves the access keys for the RedisEnterprise database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -726,7 +726,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Regenerates the RedisEnterprise database's access keys. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -755,7 +755,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Imports a database file to target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -764,7 +764,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// /// /// The headers that will be added to request. @@ -783,7 +783,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Exports a database file from target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -792,7 +792,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// /// /// The headers that will be added to request. @@ -811,7 +811,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Creates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1043,7 +1043,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Updates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1257,7 +1257,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Deletes a single database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1436,7 +1436,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Regenerates the RedisEnterprise database's access keys. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1649,7 +1649,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Imports a database file to target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1658,7 +1658,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// /// /// Headers that will be added to request. @@ -1847,7 +1847,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// Exports a database file from target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1856,7 +1856,7 @@ internal DatabasesOperations(redisenterpriseClient client) /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// /// /// Headers that will be added to request. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs index 7fc1c944247c..1cdc136bdfe1 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/DatabasesOperationsExtensions.cs @@ -28,7 +28,7 @@ public static partial class DatabasesOperationsExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -45,7 +45,7 @@ public static IPage ListByCluster(this IDatabasesOperations operations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -68,7 +68,7 @@ public static IPage ListByCluster(this IDatabasesOperations operations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -91,7 +91,7 @@ public static Database Create(this IDatabasesOperations operations, string resou /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -120,7 +120,7 @@ public static Database Create(this IDatabasesOperations operations, string resou /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -143,7 +143,7 @@ public static Database Update(this IDatabasesOperations operations, string resou /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -172,7 +172,7 @@ public static Database Update(this IDatabasesOperations operations, string resou /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -180,9 +180,9 @@ public static Database Update(this IDatabasesOperations operations, string resou /// /// The name of the database. /// - public static Database GetMethod(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName) + public static Database Get(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName) { - return operations.GetMethodAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, clusterName, databaseName).GetAwaiter().GetResult(); } /// @@ -192,7 +192,7 @@ public static Database GetMethod(this IDatabasesOperations operations, string re /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -203,9 +203,9 @@ public static Database GetMethod(this IDatabasesOperations operations, string re /// /// The cancellation token. /// - public static async Task GetMethodAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetMethodWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, databaseName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -218,7 +218,7 @@ public static Database GetMethod(this IDatabasesOperations operations, string re /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -238,7 +238,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -261,7 +261,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -281,7 +281,7 @@ public static AccessKeys ListKeys(this IDatabasesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -307,7 +307,7 @@ public static AccessKeys ListKeys(this IDatabasesOperations operations, string r /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -331,7 +331,7 @@ public static AccessKeys RegenerateKey(this IDatabasesOperations operations, str /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -361,7 +361,7 @@ public static AccessKeys RegenerateKey(this IDatabasesOperations operations, str /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -370,7 +370,7 @@ public static AccessKeys RegenerateKey(this IDatabasesOperations operations, str /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// public static void Import(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) { @@ -384,7 +384,7 @@ public static void Import(this IDatabasesOperations operations, string resourceG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -393,7 +393,7 @@ public static void Import(this IDatabasesOperations operations, string resourceG /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// /// /// The cancellation token. @@ -410,7 +410,7 @@ public static void Import(this IDatabasesOperations operations, string resourceG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -419,7 +419,7 @@ public static void Import(this IDatabasesOperations operations, string resourceG /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// public static void Export(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) { @@ -433,7 +433,7 @@ public static void Export(this IDatabasesOperations operations, string resourceG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -442,7 +442,7 @@ public static void Export(this IDatabasesOperations operations, string resourceG /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// /// /// The cancellation token. @@ -459,7 +459,7 @@ public static void Export(this IDatabasesOperations operations, string resourceG /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -482,7 +482,7 @@ public static Database BeginCreate(this IDatabasesOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -511,7 +511,7 @@ public static Database BeginCreate(this IDatabasesOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -534,7 +534,7 @@ public static Database BeginUpdate(this IDatabasesOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -563,7 +563,7 @@ public static Database BeginUpdate(this IDatabasesOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -583,7 +583,7 @@ public static void BeginDelete(this IDatabasesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -606,7 +606,7 @@ public static void BeginDelete(this IDatabasesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -630,7 +630,7 @@ public static AccessKeys BeginRegenerateKey(this IDatabasesOperations operations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -660,7 +660,7 @@ public static AccessKeys BeginRegenerateKey(this IDatabasesOperations operations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -669,7 +669,7 @@ public static AccessKeys BeginRegenerateKey(this IDatabasesOperations operations /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// public static void BeginImport(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) { @@ -683,7 +683,7 @@ public static void BeginImport(this IDatabasesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -692,7 +692,7 @@ public static void BeginImport(this IDatabasesOperations operations, string reso /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// /// /// The cancellation token. @@ -709,7 +709,7 @@ public static void BeginImport(this IDatabasesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -718,7 +718,7 @@ public static void BeginImport(this IDatabasesOperations operations, string reso /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// public static void BeginExport(this IDatabasesOperations operations, string resourceGroupName, string clusterName, string databaseName, string sasUri) { @@ -732,7 +732,7 @@ public static void BeginExport(this IDatabasesOperations operations, string reso /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -741,7 +741,7 @@ public static void BeginExport(this IDatabasesOperations operations, string reso /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// /// /// The cancellation token. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs index 360b63f126cc..f210a716c3d3 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IDatabasesOperations.cs @@ -27,7 +27,7 @@ public partial interface IDatabasesOperations /// Gets all databases in the specified RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -52,7 +52,7 @@ public partial interface IDatabasesOperations /// Creates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -83,7 +83,7 @@ public partial interface IDatabasesOperations /// Updates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -114,7 +114,7 @@ public partial interface IDatabasesOperations /// Gets information about a database in a RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -137,12 +137,12 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a single database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -167,7 +167,7 @@ public partial interface IDatabasesOperations /// Retrieves the access keys for the RedisEnterprise database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -195,7 +195,7 @@ public partial interface IDatabasesOperations /// Regenerates the RedisEnterprise database's access keys. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -227,7 +227,7 @@ public partial interface IDatabasesOperations /// Imports a database file to target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -236,7 +236,7 @@ public partial interface IDatabasesOperations /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// /// /// The headers that will be added to request. @@ -255,7 +255,7 @@ public partial interface IDatabasesOperations /// Exports a database file from target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -264,7 +264,7 @@ public partial interface IDatabasesOperations /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// /// /// The headers that will be added to request. @@ -283,7 +283,7 @@ public partial interface IDatabasesOperations /// Creates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -314,7 +314,7 @@ public partial interface IDatabasesOperations /// Updates a database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -345,7 +345,7 @@ public partial interface IDatabasesOperations /// Deletes a single database /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -370,7 +370,7 @@ public partial interface IDatabasesOperations /// Regenerates the RedisEnterprise database's access keys. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -402,7 +402,7 @@ public partial interface IDatabasesOperations /// Imports a database file to target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -411,7 +411,7 @@ public partial interface IDatabasesOperations /// The name of the database. /// /// - /// SAS Uri for the target blob to import from + /// SAS URI for the target blob to import from /// /// /// The headers that will be added to request. @@ -430,7 +430,7 @@ public partial interface IDatabasesOperations /// Exports a database file from target database. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -439,7 +439,7 @@ public partial interface IDatabasesOperations /// The name of the database. /// /// - /// SAS Uri for the target directory to export to + /// SAS URI for the target directory to export to /// /// /// The headers that will be added to request. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperationsStatus.cs similarity index 82% rename from sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.cs rename to sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperationsStatus.cs index 4e8d03c77999..65345354c976 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IGetOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IOperationsStatus.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.RedisEnterprise using System.Threading.Tasks; /// - /// GetOperations operations. + /// OperationsStatus operations. /// - public partial interface IGetOperations + public partial interface IOperationsStatus { /// /// Gets the status of operation. @@ -47,6 +47,6 @@ public partial interface IGetOperations /// /// Thrown when a required parameter is null /// - Task> OperationStatusMethodWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs index 348015bde592..00892caeb866 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateEndpointConnectionsOperations.cs @@ -28,7 +28,7 @@ public partial interface IPrivateEndpointConnectionsOperations /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -54,7 +54,7 @@ public partial interface IPrivateEndpointConnectionsOperations /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -78,13 +78,13 @@ public partial interface IPrivateEndpointConnectionsOperations /// /// Thrown when a required parameter is null /// - Task> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the state of the specified private endpoint connection /// associated with the RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -117,7 +117,7 @@ public partial interface IPrivateEndpointConnectionsOperations /// the RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -144,7 +144,7 @@ public partial interface IPrivateEndpointConnectionsOperations /// associated with the RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs index 33ee7084e6ab..3127fca2d085 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IPrivateLinkResourcesOperations.cs @@ -28,7 +28,7 @@ public partial interface IPrivateLinkResourcesOperations /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -48,6 +48,6 @@ public partial interface IPrivateLinkResourcesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByRedisEnterpriseCacheWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseManagementClient.cs similarity index 88% rename from sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs rename to sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseManagementClient.cs index bb135c166e05..4a8d564f6636 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IredisenterpriseClient.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseManagementClient.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// REST API for managing Redis Enterprise resources in Azure. /// - public partial interface IredisenterpriseClient : System.IDisposable + public partial interface IRedisEnterpriseManagementClient : System.IDisposable { /// /// The base URI of the service. @@ -41,14 +41,12 @@ public partial interface IredisenterpriseClient : System.IDisposable ServiceClientCredentials Credentials { get; } /// - /// Gets subscription credentials which uniquely identify the Microsoft - /// Azure subscription. The subscription ID forms part of the URI for - /// every service call. + /// The ID of the target subscription. /// string SubscriptionId { get; set; } /// - /// Client Api Version. + /// The API version to use for this operation. /// string ApiVersion { get; } @@ -77,9 +75,9 @@ public partial interface IredisenterpriseClient : System.IDisposable IOperations Operations { get; } /// - /// Gets the IGetOperations. + /// Gets the IOperationsStatus. /// - IGetOperations Get { get; } + IOperationsStatus OperationsStatus { get; } /// /// Gets the IRedisEnterpriseOperations. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs index 9564f8acc5c7..1b314c34f49b 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/IRedisEnterpriseOperations.cs @@ -28,7 +28,7 @@ public partial interface IRedisEnterpriseOperations /// downtime) cache cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -56,7 +56,7 @@ public partial interface IRedisEnterpriseOperations /// Updates an existing RedisEnterprise cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -84,7 +84,7 @@ public partial interface IRedisEnterpriseOperations /// Deletes a RedisEnterprise cache cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -106,7 +106,7 @@ public partial interface IRedisEnterpriseOperations /// Gets information about a RedisEnterprise cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -126,12 +126,12 @@ public partial interface IRedisEnterpriseOperations /// /// Thrown when a required parameter is null /// - Task> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all RedisEnterprise clusters in a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The headers that will be added to request. @@ -173,7 +173,7 @@ public partial interface IRedisEnterpriseOperations /// downtime) cache cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -201,7 +201,7 @@ public partial interface IRedisEnterpriseOperations /// Updates an existing RedisEnterprise cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -229,7 +229,7 @@ public partial interface IRedisEnterpriseOperations /// Deletes a RedisEnterprise cache cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AofFrequency.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AofFrequency.cs new file mode 100644 index 000000000000..34d838dbdec7 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AofFrequency.cs @@ -0,0 +1,22 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for AofFrequency. + /// + public static class AofFrequency + { + public const string OneSecond = "1s"; + public const string Always = "always"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs index 78420c0fe015..beb24fd13ccd 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/AzureEntityResource.cs @@ -14,9 +14,12 @@ namespace Microsoft.Azure.Management.RedisEnterprise.Models using System.Linq; /// + /// Entity Resource + /// + /// /// The resource model definition for an Azure Resource Manager resource /// with an etag. - /// + /// public partial class AzureEntityResource : Resource { /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs index 79ba9e52e8d2..78f63b5ea65e 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Cluster.cs @@ -45,10 +45,11 @@ public Cluster() /// "Microsoft.Compute/virtualMachines" or /// "Microsoft.Storage/storageAccounts" /// Resource tags. - /// The zones where this cluster will be - /// deployed. + /// The Availability Zones where this cluster will + /// be deployed. /// The minimum TLS version for the - /// cluster to support, e.g. '1.2' + /// cluster to support, e.g. '1.2'. Possible values include: '1.0', + /// '1.1', '1.2' /// DNS name of the cluster endpoint /// Current provisioning status of the /// cluster. Possible values include: 'Succeeded', 'Failed', @@ -89,14 +90,15 @@ public Cluster() public Sku Sku { get; set; } /// - /// Gets or sets the zones where this cluster will be deployed. + /// Gets or sets the Availability Zones where this cluster will be + /// deployed. /// [JsonProperty(PropertyName = "zones")] public IList Zones { get; set; } /// /// Gets or sets the minimum TLS version for the cluster to support, - /// e.g. '1.2' + /// e.g. '1.2'. Possible values include: '1.0', '1.1', '1.2' /// [JsonProperty(PropertyName = "properties.minimumTlsVersion")] public string MinimumTlsVersion { get; set; } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs index adce04dec229..2b03b4acc965 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ClusterUpdate.cs @@ -37,7 +37,8 @@ public ClusterUpdate() /// The SKU to create, which affects price, /// performance, and features. /// The minimum TLS version for the - /// cluster to support, e.g. '1.2' + /// cluster to support, e.g. '1.2'. Possible values include: '1.0', + /// '1.1', '1.2' /// DNS name of the cluster endpoint /// Current provisioning status of the /// cluster. Possible values include: 'Succeeded', 'Failed', @@ -79,7 +80,7 @@ public ClusterUpdate() /// /// Gets or sets the minimum TLS version for the cluster to support, - /// e.g. '1.2' + /// e.g. '1.2'. Possible values include: '1.0', '1.1', '1.2' /// [JsonProperty(PropertyName = "properties.minimumTlsVersion")] public string MinimumTlsVersion { get; set; } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs index c22d6e9dbda4..78cae236bd9a 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Database.cs @@ -61,9 +61,10 @@ public Database() /// VolatileLRU. Possible values include: 'AllKeysLFU', 'AllKeysLRU', /// 'AllKeysRandom', 'VolatileLRU', 'VolatileLFU', 'VolatileTTL', /// 'VolatileRandom', 'NoEviction' + /// Persistence settings /// Optional set of redis modules to enable in /// this database - modules can only be added at creation time. - public Database(string id = default(string), string name = default(string), string type = default(string), string clientProtocol = default(string), int? port = default(int?), string provisioningState = default(string), string resourceState = default(string), string clusteringPolicy = default(string), string evictionPolicy = default(string), IList modules = default(IList)) + public Database(string id = default(string), string name = default(string), string type = default(string), string clientProtocol = default(string), int? port = default(int?), string provisioningState = default(string), string resourceState = default(string), string clusteringPolicy = default(string), string evictionPolicy = default(string), Persistence persistence = default(Persistence), IList modules = default(IList)) : base(id, name, type) { ClientProtocol = clientProtocol; @@ -72,6 +73,7 @@ public Database() ResourceState = resourceState; ClusteringPolicy = clusteringPolicy; EvictionPolicy = evictionPolicy; + Persistence = persistence; Modules = modules; CustomInit(); } @@ -130,6 +132,12 @@ public Database() [JsonProperty(PropertyName = "properties.evictionPolicy")] public string EvictionPolicy { get; set; } + /// + /// Gets or sets persistence settings + /// + [JsonProperty(PropertyName = "properties.persistence")] + public Persistence Persistence { get; set; } + /// /// Gets or sets optional set of redis modules to enable in this /// database - modules can only be added at creation time. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs index 894b8b64adb0..eadc36ff3bbc 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/DatabaseUpdate.cs @@ -55,9 +55,10 @@ public DatabaseUpdate() /// VolatileLRU. Possible values include: 'AllKeysLFU', 'AllKeysLRU', /// 'AllKeysRandom', 'VolatileLRU', 'VolatileLFU', 'VolatileTTL', /// 'VolatileRandom', 'NoEviction' + /// Persistence settings /// Optional set of redis modules to enable in /// this database - modules can only be added at creation time. - public DatabaseUpdate(string clientProtocol = default(string), int? port = default(int?), string provisioningState = default(string), string resourceState = default(string), string clusteringPolicy = default(string), string evictionPolicy = default(string), IList modules = default(IList)) + public DatabaseUpdate(string clientProtocol = default(string), int? port = default(int?), string provisioningState = default(string), string resourceState = default(string), string clusteringPolicy = default(string), string evictionPolicy = default(string), Persistence persistence = default(Persistence), IList modules = default(IList)) { ClientProtocol = clientProtocol; Port = port; @@ -65,6 +66,7 @@ public DatabaseUpdate() ResourceState = resourceState; ClusteringPolicy = clusteringPolicy; EvictionPolicy = evictionPolicy; + Persistence = persistence; Modules = modules; CustomInit(); } @@ -123,6 +125,12 @@ public DatabaseUpdate() [JsonProperty(PropertyName = "properties.evictionPolicy")] public string EvictionPolicy { get; set; } + /// + /// Gets or sets persistence settings + /// + [JsonProperty(PropertyName = "properties.persistence")] + public Persistence Persistence { get; set; } + /// /// Gets or sets optional set of redis modules to enable in this /// database - modules can only be added at creation time. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs index ba03bcfbca43..19f9ab735846 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ExportClusterParameters.cs @@ -32,7 +32,7 @@ public ExportClusterParameters() /// /// Initializes a new instance of the ExportClusterParameters class. /// - /// SAS Uri for the target directory to export + /// SAS URI for the target directory to export /// to public ExportClusterParameters(string sasUri) { @@ -46,7 +46,7 @@ public ExportClusterParameters(string sasUri) partial void CustomInit(); /// - /// Gets or sets SAS Uri for the target directory to export to + /// Gets or sets SAS URI for the target directory to export to /// [JsonProperty(PropertyName = "sasUri")] public string SasUri { get; set; } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs index 30c366af6964..a5adbae21aec 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ImportClusterParameters.cs @@ -32,7 +32,7 @@ public ImportClusterParameters() /// /// Initializes a new instance of the ImportClusterParameters class. /// - /// SAS Uri for the target blob to import + /// SAS URI for the target blob to import /// from public ImportClusterParameters(string sasUri) { @@ -46,7 +46,7 @@ public ImportClusterParameters(string sasUri) partial void CustomInit(); /// - /// Gets or sets SAS Uri for the target blob to import from + /// Gets or sets SAS URI for the target blob to import from /// [JsonProperty(PropertyName = "sasUri")] public string SasUri { get; set; } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs index 7459f0f5d4ba..f9d627ba8373 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Operation.cs @@ -14,9 +14,12 @@ namespace Microsoft.Azure.Management.RedisEnterprise.Models using System.Linq; /// + /// REST API Operation + /// + /// /// Details of a REST API operation, returned from the Resource Provider /// Operations API - /// + /// public partial class Operation { /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Persistence.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Persistence.cs new file mode 100644 index 000000000000..6d82a1a6e9d1 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Persistence.cs @@ -0,0 +1,83 @@ +// +// 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.RedisEnterprise.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Persistence settings + /// + /// + /// Persistence-related configuration for the RedisEnterprise database + /// + public partial class Persistence + { + /// + /// Initializes a new instance of the Persistence class. + /// + public Persistence() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Persistence class. + /// + /// Sets whether AOF is enabled. + /// Sets whether RDB is enabled. + /// Sets the frequency at which data is + /// written to disk. Possible values include: '1s', 'always' + /// Sets the frequency at which a snapshot + /// of the database is created. Possible values include: '1h', '6h', + /// '12h' + public Persistence(bool? aofEnabled = default(bool?), bool? rdbEnabled = default(bool?), string aofFrequency = default(string), string rdbFrequency = default(string)) + { + AofEnabled = aofEnabled; + RdbEnabled = rdbEnabled; + AofFrequency = aofFrequency; + RdbFrequency = rdbFrequency; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets sets whether AOF is enabled. + /// + [JsonProperty(PropertyName = "aofEnabled")] + public bool? AofEnabled { get; set; } + + /// + /// Gets or sets sets whether RDB is enabled. + /// + [JsonProperty(PropertyName = "rdbEnabled")] + public bool? RdbEnabled { get; set; } + + /// + /// Gets or sets sets the frequency at which data is written to disk. + /// Possible values include: '1s', 'always' + /// + [JsonProperty(PropertyName = "aofFrequency")] + public string AofFrequency { get; set; } + + /// + /// Gets or sets sets the frequency at which a snapshot of the database + /// is created. Possible values include: '1h', '6h', '12h' + /// + [JsonProperty(PropertyName = "rdbFrequency")] + public string RdbFrequency { get; set; } + + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs index 484c8c42e2c7..2db73222e0de 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/ProxyResource.cs @@ -13,9 +13,12 @@ namespace Microsoft.Azure.Management.RedisEnterprise.Models using System.Linq; /// - /// The resource model definition for an Azure Resource Manager proxy - /// resource. It will have everything other than required location and tags + /// Proxy Resource /// + /// + /// The resource model definition for a Azure Resource Manager proxy + /// resource. It will not have tags and a location + /// public partial class ProxyResource : Resource { /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RdbFrequency.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RdbFrequency.cs new file mode 100644 index 000000000000..dc1e15974e75 --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/RdbFrequency.cs @@ -0,0 +1,23 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for RdbFrequency. + /// + public static class RdbFrequency + { + public const string OneHour = "1h"; + public const string SixHours = "6h"; + public const string TwelveHours = "12h"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs index 5b68e0c05b9f..cdb9d7650ca4 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/Resource.cs @@ -16,9 +16,12 @@ namespace Microsoft.Azure.Management.RedisEnterprise.Models using System.Linq; /// + /// Resource + /// + /// /// Common fields that are returned in the response for all Azure Resource /// Manager resources - /// + /// public partial class Resource : IResource { /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TlsVersion.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TlsVersion.cs new file mode 100644 index 000000000000..ae0dd68c10bd --- /dev/null +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TlsVersion.cs @@ -0,0 +1,23 @@ +// +// 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.RedisEnterprise.Models +{ + + /// + /// Defines values for TlsVersion. + /// + public static class TlsVersion + { + public const string OneFullStopZero = "1.0"; + public const string OneFullStopOne = "1.1"; + public const string OneFullStopTwo = "1.2"; + } +} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs index a7cf2b91af29..f4dd5d7bc841 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Models/TrackedResource.cs @@ -16,9 +16,12 @@ namespace Microsoft.Azure.Management.RedisEnterprise.Models using System.Linq; /// - /// The resource model definition for an Azure Resource Manager tracked top - /// level resource + /// Tracked Resource /// + /// + /// The resource model definition for an Azure Resource Manager tracked top + /// level resource which has 'tags' and a 'location' + /// public partial class TrackedResource : Resource { /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs index 326509d6f72e..5d3ba81d74b1 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/Operations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// Operations operations. /// - internal partial class Operations : IServiceOperations, IOperations + internal partial class Operations : IServiceOperations, IOperations { /// /// Initializes a new instance of the Operations class. @@ -36,7 +36,7 @@ internal partial class Operations : IServiceOperations, I /// /// Thrown when a required parameter is null /// - internal Operations(redisenterpriseClient client) + internal Operations(RedisEnterpriseManagementClient client) { if (client == null) { @@ -46,9 +46,9 @@ internal Operations(redisenterpriseClient client) } /// - /// Gets a reference to the redisenterpriseClient + /// Gets a reference to the RedisEnterpriseManagementClient /// - public redisenterpriseClient Client { get; private set; } + public RedisEnterpriseManagementClient Client { get; private set; } /// /// Lists all of the available REST API operations of the Microsoft.Cache diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsStatus.cs similarity index 93% rename from sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.cs rename to sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsStatus.cs index 26cb9566e005..fbc7a2aaf542 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsStatus.cs @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.RedisEnterprise using System.Threading.Tasks; /// - /// GetOperations operations. + /// OperationsStatus operations. /// - internal partial class GetOperations : IServiceOperations, IGetOperations + internal partial class OperationsStatus : IServiceOperations, IOperationsStatus { /// - /// Initializes a new instance of the GetOperations class. + /// Initializes a new instance of the OperationsStatus class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class GetOperations : IServiceOperations /// /// Thrown when a required parameter is null /// - internal GetOperations(redisenterpriseClient client) + internal OperationsStatus(RedisEnterpriseManagementClient client) { if (client == null) { @@ -46,9 +46,9 @@ internal GetOperations(redisenterpriseClient client) } /// - /// Gets a reference to the redisenterpriseClient + /// Gets a reference to the RedisEnterpriseManagementClient /// - public redisenterpriseClient Client { get; private set; } + public RedisEnterpriseManagementClient Client { get; private set; } /// /// Gets the status of operation. @@ -80,7 +80,7 @@ internal GetOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task> OperationStatusMethodWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (location == null) { @@ -108,7 +108,7 @@ internal GetOperations(redisenterpriseClient client) tracingParameters.Add("location", location); tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "OperationStatusMethod", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsStatusExtensions.cs similarity index 70% rename from sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.cs rename to sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsStatusExtensions.cs index 72bb4e804449..091067fcf608 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/GetOperationsExtensions.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/OperationsStatusExtensions.cs @@ -17,9 +17,9 @@ namespace Microsoft.Azure.Management.RedisEnterprise using System.Threading.Tasks; /// - /// Extension methods for GetOperations. + /// Extension methods for OperationsStatus. /// - public static partial class GetOperationsExtensions + public static partial class OperationsStatusExtensions { /// /// Gets the status of operation. @@ -33,9 +33,9 @@ public static partial class GetOperationsExtensions /// /// The operation's unique identifier. /// - public static OperationStatus OperationStatusMethod(this IGetOperations operations, string location, string operationId) + public static OperationStatus Get(this IOperationsStatus operations, string location, string operationId) { - return operations.OperationStatusMethodAsync(location, operationId).GetAwaiter().GetResult(); + return operations.GetAsync(location, operationId).GetAwaiter().GetResult(); } /// @@ -53,9 +53,9 @@ public static OperationStatus OperationStatusMethod(this IGetOperations operatio /// /// The cancellation token. /// - public static async Task OperationStatusMethodAsync(this IGetOperations operations, string location, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IOperationsStatus operations, string location, string operationId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.OperationStatusMethodWithHttpMessagesAsync(location, operationId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, operationId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs index 29730a832ea4..2bbc6788faec 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// PrivateEndpointConnectionsOperations operations. /// - internal partial class PrivateEndpointConnectionsOperations : IServiceOperations, IPrivateEndpointConnectionsOperations + internal partial class PrivateEndpointConnectionsOperations : IServiceOperations, IPrivateEndpointConnectionsOperations { /// /// Initializes a new instance of the PrivateEndpointConnectionsOperations class. @@ -36,7 +36,7 @@ internal partial class PrivateEndpointConnectionsOperations : IServiceOperations /// /// Thrown when a required parameter is null /// - internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) + internal PrivateEndpointConnectionsOperations(RedisEnterpriseManagementClient client) { if (client == null) { @@ -46,16 +46,16 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) } /// - /// Gets a reference to the redisenterpriseClient + /// Gets a reference to the RedisEnterpriseManagementClient /// - public redisenterpriseClient Client { get; private set; } + public RedisEnterpriseManagementClient Client { get; private set; } /// /// Lists all the private endpoint connections associated with the /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -247,7 +247,7 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -277,7 +277,7 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -310,7 +310,7 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) tracingParameters.Add("clusterName", clusterName); tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMethod", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -449,7 +449,7 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) /// with the RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -479,7 +479,7 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -660,7 +660,7 @@ internal PrivateEndpointConnectionsOperations(redisenterpriseClient client) /// with the RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs index b7279f3ee79c..708c8e3cd15f 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs @@ -31,7 +31,7 @@ public static partial class PrivateEndpointConnectionsOperationsExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -49,7 +49,7 @@ public static IEnumerable List(this IPrivateEndpointC /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -73,7 +73,7 @@ public static IEnumerable List(this IPrivateEndpointC /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -82,9 +82,9 @@ public static IEnumerable List(this IPrivateEndpointC /// The name of the private endpoint connection associated with the Azure /// resource /// - public static PrivateEndpointConnection GetMethod(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) + public static PrivateEndpointConnection Get(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) { - return operations.GetMethodAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); } /// @@ -95,7 +95,7 @@ public static PrivateEndpointConnection GetMethod(this IPrivateEndpointConnectio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -107,9 +107,9 @@ public static PrivateEndpointConnection GetMethod(this IPrivateEndpointConnectio /// /// The cancellation token. /// - public static async Task GetMethodAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetMethodWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -123,7 +123,7 @@ public static PrivateEndpointConnection GetMethod(this IPrivateEndpointConnectio /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -148,7 +148,7 @@ public static PrivateEndpointConnection Put(this IPrivateEndpointConnectionsOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -179,7 +179,7 @@ public static PrivateEndpointConnection Put(this IPrivateEndpointConnectionsOper /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -201,7 +201,7 @@ public static void Delete(this IPrivateEndpointConnectionsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -226,7 +226,7 @@ public static void Delete(this IPrivateEndpointConnectionsOperations operations, /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -251,7 +251,7 @@ public static PrivateEndpointConnection BeginPut(this IPrivateEndpointConnection /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs index 6cb1db26b18c..4fccf1e28046 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// PrivateLinkResourcesOperations operations. /// - internal partial class PrivateLinkResourcesOperations : IServiceOperations, IPrivateLinkResourcesOperations + internal partial class PrivateLinkResourcesOperations : IServiceOperations, IPrivateLinkResourcesOperations { /// /// Initializes a new instance of the PrivateLinkResourcesOperations class. @@ -36,7 +36,7 @@ internal partial class PrivateLinkResourcesOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal PrivateLinkResourcesOperations(redisenterpriseClient client) + internal PrivateLinkResourcesOperations(RedisEnterpriseManagementClient client) { if (client == null) { @@ -46,16 +46,16 @@ internal PrivateLinkResourcesOperations(redisenterpriseClient client) } /// - /// Gets a reference to the redisenterpriseClient + /// Gets a reference to the RedisEnterpriseManagementClient /// - public redisenterpriseClient Client { get; private set; } + public RedisEnterpriseManagementClient Client { get; private set; } /// /// Gets the private link resources that need to be created for a /// RedisEnterprise cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -81,7 +81,7 @@ internal PrivateLinkResourcesOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByRedisEnterpriseCacheWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -109,7 +109,7 @@ internal PrivateLinkResourcesOperations(redisenterpriseClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("clusterName", clusterName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByRedisEnterpriseCache", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs index 593fbca79466..9e083aac93fd 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/PrivateLinkResourcesOperationsExtensions.cs @@ -31,14 +31,14 @@ public static partial class PrivateLinkResourcesOperationsExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. /// - public static IEnumerable ListByRedisEnterpriseCache(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName) + public static IEnumerable ListByCluster(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName) { - return operations.ListByRedisEnterpriseCacheAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + return operations.ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); } /// @@ -49,7 +49,7 @@ public static IEnumerable ListByRedisEnterpriseCache(this I /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -57,9 +57,9 @@ public static IEnumerable ListByRedisEnterpriseCache(this I /// /// The cancellation token. /// - public static async Task> ListByRedisEnterpriseCacheAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByClusterAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByRedisEnterpriseCacheWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseManagementClient.cs similarity index 80% rename from sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs rename to sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseManagementClient.cs index 4e96523f30d7..6cdf73b64ae6 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/redisenterpriseClient.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseManagementClient.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// REST API for managing Redis Enterprise resources in Azure. /// - public partial class redisenterpriseClient : ServiceClient, IredisenterpriseClient, IAzureClient + public partial class RedisEnterpriseManagementClient : ServiceClient, IRedisEnterpriseManagementClient, IAzureClient { /// /// The base URI of the service. @@ -47,14 +47,12 @@ public partial class redisenterpriseClient : ServiceClient - /// Gets subscription credentials which uniquely identify the Microsoft Azure - /// subscription. The subscription ID forms part of the URI for every service - /// call. + /// The ID of the target subscription. /// public string SubscriptionId { get; set; } /// - /// Client Api Version. + /// The API version to use for this operation. /// public string ApiVersion { get; private set; } @@ -82,9 +80,9 @@ public partial class redisenterpriseClient : ServiceClient - /// Gets the IGetOperations. + /// Gets the IOperationsStatus. /// - public virtual IGetOperations Get { get; private set; } + public virtual IOperationsStatus OperationsStatus { get; private set; } /// /// Gets the IRedisEnterpriseOperations. @@ -107,31 +105,31 @@ public partial class redisenterpriseClient : ServiceClient - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// HttpClient to be used /// /// - /// True: will dispose the provided httpClient on calling redisenterpriseClient.Dispose(). False: will not dispose provided httpClient - protected redisenterpriseClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + /// True: will dispose the provided httpClient on calling RedisEnterpriseManagementClient.Dispose(). False: will not dispose provided httpClient + protected RedisEnterpriseManagementClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) { Initialize(); } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected redisenterpriseClient(params DelegatingHandler[] handlers) : base(handlers) + protected RedisEnterpriseManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Optional. The http client handler used to handle http transport. @@ -139,13 +137,13 @@ protected redisenterpriseClient(params DelegatingHandler[] handlers) : base(hand /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected redisenterpriseClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected RedisEnterpriseManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Optional. The base URI of the service. @@ -156,7 +154,7 @@ protected redisenterpriseClient(HttpClientHandler rootHandler, params Delegating /// /// Thrown when a required parameter is null /// - protected redisenterpriseClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + protected RedisEnterpriseManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -166,7 +164,7 @@ protected redisenterpriseClient(System.Uri baseUri, params DelegatingHandler[] h } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Optional. The base URI of the service. @@ -180,7 +178,7 @@ protected redisenterpriseClient(System.Uri baseUri, params DelegatingHandler[] h /// /// Thrown when a required parameter is null /// - protected redisenterpriseClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected RedisEnterpriseManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -190,7 +188,7 @@ protected redisenterpriseClient(System.Uri baseUri, HttpClientHandler rootHandle } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Required. Credentials needed for the client to connect to Azure. @@ -201,7 +199,7 @@ protected redisenterpriseClient(System.Uri baseUri, HttpClientHandler rootHandle /// /// Thrown when a required parameter is null /// - public redisenterpriseClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public RedisEnterpriseManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -215,7 +213,7 @@ public redisenterpriseClient(ServiceClientCredentials credentials, params Delega } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Required. Credentials needed for the client to connect to Azure. @@ -224,11 +222,11 @@ public redisenterpriseClient(ServiceClientCredentials credentials, params Delega /// HttpClient to be used /// /// - /// True: will dispose the provided httpClient on calling redisenterpriseClient.Dispose(). False: will not dispose provided httpClient + /// True: will dispose the provided httpClient on calling RedisEnterpriseManagementClient.Dispose(). False: will not dispose provided httpClient /// /// Thrown when a required parameter is null /// - public redisenterpriseClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + public RedisEnterpriseManagementClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) { if (credentials == null) { @@ -242,7 +240,7 @@ public redisenterpriseClient(ServiceClientCredentials credentials, HttpClient ht } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Required. Credentials needed for the client to connect to Azure. @@ -256,7 +254,7 @@ public redisenterpriseClient(ServiceClientCredentials credentials, HttpClient ht /// /// Thrown when a required parameter is null /// - public redisenterpriseClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + public RedisEnterpriseManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -270,7 +268,7 @@ public redisenterpriseClient(ServiceClientCredentials credentials, HttpClientHan } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Optional. The base URI of the service. @@ -284,7 +282,7 @@ public redisenterpriseClient(ServiceClientCredentials credentials, HttpClientHan /// /// Thrown when a required parameter is null /// - public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public RedisEnterpriseManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -303,7 +301,7 @@ public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials creden } /// - /// Initializes a new instance of the redisenterpriseClient class. + /// Initializes a new instance of the RedisEnterpriseManagementClient class. /// /// /// Optional. The base URI of the service. @@ -320,7 +318,7 @@ public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials creden /// /// Thrown when a required parameter is null /// - public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + public RedisEnterpriseManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -348,13 +346,13 @@ public redisenterpriseClient(System.Uri baseUri, ServiceClientCredentials creden private void Initialize() { Operations = new Operations(this); - Get = new GetOperations(this); + OperationsStatus = new OperationsStatus(this); RedisEnterprise = new RedisEnterpriseOperations(this); Databases = new DatabasesOperations(this); PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); PrivateLinkResources = new PrivateLinkResourcesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2020-10-01-preview"; + ApiVersion = "2021-03-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs index 508d9ff5003a..48c1f20511f1 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Management.RedisEnterprise /// /// RedisEnterpriseOperations operations. /// - internal partial class RedisEnterpriseOperations : IServiceOperations, IRedisEnterpriseOperations + internal partial class RedisEnterpriseOperations : IServiceOperations, IRedisEnterpriseOperations { /// /// Initializes a new instance of the RedisEnterpriseOperations class. @@ -36,7 +36,7 @@ internal partial class RedisEnterpriseOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal RedisEnterpriseOperations(redisenterpriseClient client) + internal RedisEnterpriseOperations(RedisEnterpriseManagementClient client) { if (client == null) { @@ -46,16 +46,16 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) } /// - /// Gets a reference to the redisenterpriseClient + /// Gets a reference to the RedisEnterpriseManagementClient /// - public redisenterpriseClient Client { get; private set; } + public RedisEnterpriseManagementClient Client { get; private set; } /// /// Creates or updates an existing (overwrite/recreate, with potential /// downtime) cache cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -80,7 +80,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// Updates an existing RedisEnterprise cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -105,7 +105,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// Deletes a RedisEnterprise cache cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -127,7 +127,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// Gets information about a RedisEnterprise cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -153,7 +153,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetMethodWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -181,7 +181,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("clusterName", clusterName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMethod", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -318,7 +318,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// Lists all RedisEnterprise clusters in a resource group. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// Headers that will be added to request. @@ -674,7 +674,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// downtime) cache cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -897,7 +897,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// Updates an existing RedisEnterprise cluster /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -1102,7 +1102,7 @@ internal RedisEnterpriseOperations(redisenterpriseClient client) /// Deletes a RedisEnterprise cache cluster. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs index 084966fb065f..a957ac991021 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/RedisEnterpriseOperationsExtensions.cs @@ -29,7 +29,7 @@ public static partial class RedisEnterpriseOperationsExtensions /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -50,7 +50,7 @@ public static Cluster Create(this IRedisEnterpriseOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -76,7 +76,7 @@ public static Cluster Create(this IRedisEnterpriseOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -96,7 +96,7 @@ public static Cluster Update(this IRedisEnterpriseOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -122,7 +122,7 @@ public static Cluster Update(this IRedisEnterpriseOperations operations, string /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -139,7 +139,7 @@ public static void Delete(this IRedisEnterpriseOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -159,14 +159,14 @@ public static void Delete(this IRedisEnterpriseOperations operations, string res /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. /// - public static Cluster GetMethod(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName) + public static Cluster Get(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName) { - return operations.GetMethodAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); } /// @@ -176,7 +176,7 @@ public static Cluster GetMethod(this IRedisEnterpriseOperations operations, stri /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -184,9 +184,9 @@ public static Cluster GetMethod(this IRedisEnterpriseOperations operations, stri /// /// The cancellation token. /// - public static async Task GetMethodAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IRedisEnterpriseOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetMethodWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -199,7 +199,7 @@ public static Cluster GetMethod(this IRedisEnterpriseOperations operations, stri /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// public static IPage ListByResourceGroup(this IRedisEnterpriseOperations operations, string resourceGroupName) { @@ -213,7 +213,7 @@ public static IPage ListByResourceGroup(this IRedisEnterpriseOperations /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The cancellation token. @@ -262,7 +262,7 @@ public static IPage List(this IRedisEnterpriseOperations operations) /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -283,7 +283,7 @@ public static Cluster BeginCreate(this IRedisEnterpriseOperations operations, st /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -309,7 +309,7 @@ public static Cluster BeginCreate(this IRedisEnterpriseOperations operations, st /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -329,7 +329,7 @@ public static Cluster BeginUpdate(this IRedisEnterpriseOperations operations, st /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -355,7 +355,7 @@ public static Cluster BeginUpdate(this IRedisEnterpriseOperations operations, st /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. @@ -372,7 +372,7 @@ public static void BeginDelete(this IRedisEnterpriseOperations operations, strin /// The operations group for this extension method. /// /// - /// The name of the resource group. + /// The name of the resource group. The name is case insensitive. /// /// /// The name of the RedisEnterprise cluster. diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs similarity index 75% rename from sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs rename to sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs index 7fecfa11aecd..c62445162490 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_redisEnterprise.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs @@ -13,18 +13,18 @@ namespace Microsoft.Azure.Management.RedisEnterprise internal static partial class SdkInfo { - public static IEnumerable> ApiInfo_redisEnterprise + public static IEnumerable> ApiInfo_RedisEnterpriseManagementClient { get { return new Tuple[] { - new Tuple("Cache", "Databases", "2020-10-01-preview"), - new Tuple("Cache", "Get", "2020-10-01-preview"), - new Tuple("Cache", "Operations", "2020-10-01-preview"), - new Tuple("Cache", "PrivateEndpointConnections", "2020-10-01-preview"), - new Tuple("Cache", "PrivateLinkResources", "2020-10-01-preview"), - new Tuple("Cache", "RedisEnterprise", "2020-10-01-preview"), + new Tuple("Cache", "Databases", "2021-03-01"), + new Tuple("Cache", "Operations", "2021-03-01"), + new Tuple("Cache", "OperationsStatus", "2021-03-01"), + new Tuple("Cache", "PrivateEndpointConnections", "2021-03-01"), + new Tuple("Cache", "PrivateLinkResources", "2021-03-01"), + new Tuple("Cache", "RedisEnterprise", "2021-03-01"), }.AsEnumerable(); } } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj index 99f5e85a5804..0ff7867f4f4a 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Microsoft.Azure.Management.RedisEnterprise.csproj @@ -5,11 +5,25 @@ Microsoft.Azure.Management.RedisEnterprise - Provides redis enterprise cache management capabilities for Microsoft Azure. - 1.0.0-preview + Provides Redis Enterprise cache management capabilities for Microsoft Azure. + 2.0.0 Microsoft.Azure.Management.RedisEnterprise - Microsoft Azure Redis Enterprise Cache management;Redis Enterprise Management; - Initial release. + Microsoft Azure Redis Enterprise cache management;Redis Enterprise Management; + + + $(SdkTargetFx) diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs index d03532819ebf..51c2ed6c8ee4 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Properties/AssemblyInfo.cs @@ -6,10 +6,10 @@ using System.Runtime.InteropServices; [assembly: AssemblyTitle("Microsoft Azure Redis Enterprise Cache Management Library")] -[assembly: AssemblyDescription("Provides Microsoft Azure redis enterprise cache management operations.")] +[assembly: AssemblyDescription("Provides Microsoft Azure Redis Enterprise cache management operations.")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("2.0.0")] +[assembly: AssemblyFileVersion("2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs deleted file mode 100644 index 6449a5f81430..000000000000 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/DummyResponseDelegatingHandler.cs +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -using System; -using System.Net; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Threading.Tasks; - -namespace AzureRedisEnterpriseCache.Tests -{ - public class DummyResponseDelegatingHandler : DelegatingHandler - { - private HttpResponseMessage _response; - - public DummyResponseDelegatingHandler(HttpResponseMessage response) - { - _response = response; - } - -#pragma warning disable 1998 - protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) - { - return _response; - } -#pragma warning restore 1998 - } -} diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj index eb8d2caf96d9..305bb0a83c5e 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Microsoft.Azure.Management.RedisEnterpriseCache.Tests.csproj @@ -4,15 +4,13 @@ RedisEnterpriseCache.Tests AzureRedisEnterpriseCache.Tests Class Library RedisEnterpriseCache.Tests - 1.0.0 + 2.0.0 true - + - - diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs index 24e37625db44..82369957b663 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/BeginCreateFunctionalTests.cs @@ -5,8 +5,8 @@ using Microsoft.Azure.Management.RedisEnterprise; using Microsoft.Azure.Management.RedisEnterprise.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System.Collections.Generic; using System; +using System.Collections.Generic; using Xunit; namespace AzureRedisEnterpriseCache.Tests @@ -18,72 +18,88 @@ public void BeginCreateFunctionalTest() { using (var context = MockContext.Start(this.GetType())) { - var _redisEnterpriseCacheManagementHelper = new RedisEnterpriseCacheManagementHelper(this, context); + RedisEnterpriseCacheManagementHelper _redisEnterpriseCacheManagementHelper = new RedisEnterpriseCacheManagementHelper(this, context); _redisEnterpriseCacheManagementHelper.TryRegisterSubscriptionForResource(); - var resourceGroupName = TestUtilities.GenerateName("RedisEnterpriseBegin"); - var redisEnterpriseCacheName = TestUtilities.GenerateName("RedisEnterpriseBegin"); - var databaseName = "default"; + string resourceGroupName = TestUtilities.GenerateName("RedisEnterpriseBegin"); + string redisEnterpriseCacheName = TestUtilities.GenerateName("RedisEnterpriseBegin"); + string databaseName = "default"; - var _client = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(this, context); + RedisEnterpriseManagementClient _client = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(this, context); _redisEnterpriseCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisEnterpriseCacheManagementHelper.Location); - var response = _client.RedisEnterprise.BeginCreate(resourceGroupName, redisEnterpriseCacheName, - parameters: new Cluster - { - Location = RedisEnterpriseCacheManagementHelper.Location, - Sku = new Sku() - { - Name = SkuName.EnterpriseE10, - Capacity = 2 - }, - MinimumTlsVersion = "1.2", - Zones = new List { "1", "2", "3" }, - }); + Cluster clusterResponse = _client.RedisEnterprise.BeginCreate(resourceGroupName, redisEnterpriseCacheName, + parameters: new Cluster + { + Location = RedisEnterpriseCacheManagementHelper.Location, + Sku = new Sku() + { + Name = SkuName.EnterpriseE10, + Capacity = 2 + }, + MinimumTlsVersion = TlsVersion.OneFullStopTwo, + Zones = new List { "1", "2", "3" }, + }); - Assert.Contains(redisEnterpriseCacheName, response.Id); - Assert.Equal(RedisEnterpriseCacheManagementHelper.Location, response.Location); - Assert.Equal(redisEnterpriseCacheName, response.Name); - Assert.Equal("Microsoft.Cache/redisEnterprise", response.Type); - Assert.Equal(ProvisioningState.Creating, response.ProvisioningState, ignoreCase: true); - Assert.Equal(ResourceState.Creating, response.ResourceState, ignoreCase: true); - Assert.Equal(SkuName.EnterpriseE10, response.Sku.Name); - Assert.Equal(2, response.Sku.Capacity); + Assert.Contains(redisEnterpriseCacheName, clusterResponse.Id); + Assert.Equal(RedisEnterpriseCacheManagementHelper.Location, clusterResponse.Location); + Assert.Equal(redisEnterpriseCacheName, clusterResponse.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise", clusterResponse.Type); + Assert.Equal(ProvisioningState.Creating, clusterResponse.ProvisioningState, ignoreCase: true); + Assert.Equal(ResourceState.Creating, clusterResponse.ResourceState, ignoreCase: true); + Assert.Equal(SkuName.EnterpriseE10, clusterResponse.Sku.Name); + Assert.Equal(2, clusterResponse.Sku.Capacity); + // Wait up to 30 minutes for cluster creation to succeed for (int i = 0; i < 60; i++) { - response = _client.RedisEnterprise.GetMethod(resourceGroupName, redisEnterpriseCacheName); - if (ProvisioningState.Succeeded.Equals(response.ProvisioningState, StringComparison.OrdinalIgnoreCase)) + clusterResponse = _client.RedisEnterprise.Get(resourceGroupName, redisEnterpriseCacheName); + if (ProvisioningState.Succeeded.Equals(clusterResponse.ProvisioningState, StringComparison.OrdinalIgnoreCase)) { break; } - TestUtilities.Wait(new TimeSpan(0, 0, 30)); + TestUtilities.Wait(TimeSpan.FromSeconds(30)); } - Assert.Equal(ResourceState.Running, response.ResourceState, ignoreCase: true); - Assert.Equal(3, response.Zones.Count); + Assert.Equal(ResourceState.Running, clusterResponse.ResourceState, ignoreCase: true); + Assert.Equal(3, clusterResponse.Zones.Count); - var responseDatabase = _client.Databases.BeginCreate(resourceGroupName, redisEnterpriseCacheName, databaseName, - parameters: new Database - { - ClientProtocol = Protocol.Encrypted, - ClusteringPolicy = ClusteringPolicy.OSSCluster, - EvictionPolicy = EvictionPolicy.NoEviction, - Modules = new List() + Database databaseResponse = _client.Databases.BeginCreate(resourceGroupName, redisEnterpriseCacheName, databaseName, + parameters: new Database { - new Module(name: "RedisBloom", args: "ERROR_RATE 0.00 INITIAL_SIZE 400"), - new Module(name: "RedisTimeSeries", args: "RETENTION_POLICY 20"), - new Module(name: "RediSearch") - }, - }); + ClientProtocol = Protocol.Encrypted, + ClusteringPolicy = ClusteringPolicy.OSSCluster, + EvictionPolicy = EvictionPolicy.NoEviction, + Persistence = new Persistence() + { + AofEnabled = true, + AofFrequency = AofFrequency.OneSecond + }, + Modules = new List() + { + new Module(name: "RedisBloom", args: "ERROR_RATE 0.00 INITIAL_SIZE 400"), + new Module(name: "RedisTimeSeries", args: "RETENTION_POLICY 20"), + new Module(name: "RediSearch") + }, + }); + + // Wait up to 30 minutes for database creation to succeed + for (int i = 0; i < 60; i++) + { + databaseResponse = _client.Databases.Get(resourceGroupName, redisEnterpriseCacheName, databaseName); + if (ProvisioningState.Succeeded.Equals(databaseResponse.ProvisioningState, StringComparison.OrdinalIgnoreCase)) + { + break; + } + TestUtilities.Wait(TimeSpan.FromSeconds(30)); + } - Assert.Contains(databaseName, responseDatabase.Id); - Assert.Equal(databaseName, responseDatabase.Name); - Assert.Equal("Microsoft.Cache/redisEnterprise/databases", responseDatabase.Type); - Assert.Equal(ProvisioningState.Succeeded, responseDatabase.ProvisioningState, ignoreCase: true); - Assert.Equal(ResourceState.Running, responseDatabase.ResourceState, ignoreCase: true); - Assert.Equal(Protocol.Encrypted, responseDatabase.ClientProtocol); - Assert.Equal(ClusteringPolicy.OSSCluster, responseDatabase.ClusteringPolicy); - Assert.Equal(EvictionPolicy.NoEviction, responseDatabase.EvictionPolicy); - Assert.Equal(3, responseDatabase.Modules.Count); + Assert.Contains(databaseName, databaseResponse.Id); + Assert.Equal(databaseName, databaseResponse.Name); + Assert.Equal("Microsoft.Cache/redisEnterprise/databases", databaseResponse.Type); + Assert.Equal(ResourceState.Running, databaseResponse.ResourceState, ignoreCase: true); + Assert.Equal(Protocol.Encrypted, databaseResponse.ClientProtocol); + Assert.Equal(ClusteringPolicy.OSSCluster, databaseResponse.ClusteringPolicy); + Assert.Equal(EvictionPolicy.NoEviction, databaseResponse.EvictionPolicy); + Assert.Equal(3, databaseResponse.Modules.Count); _client.RedisEnterprise.Delete(resourceGroupName: resourceGroupName, clusterName: redisEnterpriseCacheName); } diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs index 135e5b5b42ca..69f8e47c7f1f 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs @@ -6,7 +6,6 @@ using Microsoft.Azure.Management.RedisEnterprise.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System.Collections.Generic; -using System; using Xunit; using Microsoft.Azure.Management.ResourceManager; @@ -26,19 +25,19 @@ public void CreateUpdateDeleteTest() { using (var context = MockContext.Start(this.GetType())) { - var _client = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(this, context); + RedisEnterpriseManagementClient _client = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(this, context); - var responseCreate = _client.RedisEnterprise.Create(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, - parameters: new Cluster - { - Location = RedisEnterpriseCacheManagementHelper.Location, - Sku = new Sku() - { - Name = SkuName.EnterpriseFlashF300, - Capacity = 3 - }, - Zones = new List { "1", "2", "3" }, - }); + Cluster responseCreate = _client.RedisEnterprise.Create(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, + parameters: new Cluster + { + Location = RedisEnterpriseCacheManagementHelper.Location, + Sku = new Sku() + { + Name = SkuName.EnterpriseFlashF300, + Capacity = 3 + }, + Zones = new List { "1", "2", "3" }, + }); Assert.Contains(fixture.RedisEnterpriseCacheName, responseCreate.Id); Assert.Equal(RedisEnterpriseCacheManagementHelper.Location, responseCreate.Location); @@ -52,13 +51,13 @@ public void CreateUpdateDeleteTest() Assert.Equal(0, responseCreate.PrivateEndpointConnections.Count); Assert.Equal(0, responseCreate.Tags.Count); - var responseCreateDatabase = _client.Databases.Create(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, databaseName: fixture.DatabaseName, - parameters: new Database - { - ClientProtocol = Protocol.Plaintext, - ClusteringPolicy = ClusteringPolicy.EnterpriseCluster, - EvictionPolicy = EvictionPolicy.VolatileLRU, - }); + Database responseCreateDatabase = _client.Databases.Create(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, databaseName: fixture.DatabaseName, + parameters: new Database + { + ClientProtocol = Protocol.Plaintext, + ClusteringPolicy = ClusteringPolicy.EnterpriseCluster, + EvictionPolicy = EvictionPolicy.VolatileLRU, + }); Assert.Contains(fixture.DatabaseName, responseCreateDatabase.Id); Assert.Equal(fixture.DatabaseName, responseCreateDatabase.Name); @@ -71,11 +70,11 @@ public void CreateUpdateDeleteTest() // Database update operations are not currently supported /* - var responseUpdateDatabase = _client.Databases.Update(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, databaseName: fixture.DatabaseName, - parameters: new DatabaseUpdate - { - ClientProtocol = Protocol.Encrypted, - }); + Database responseUpdateDatabase = _client.Databases.Update(resourceGroupName: fixture.ResourceGroupName, clusterName: fixture.RedisEnterpriseCacheName, databaseName: fixture.DatabaseName, + parameters: new DatabaseUpdate + { + ClientProtocol = Protocol.Encrypted, + }); Assert.Contains(fixture.DatabaseName, responseUpdateDatabase.Id); Assert.Equal(fixture.DatabaseName, responseUpdateDatabase.Name); diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs index 9d4dffde03be..9218b5e65860 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementHelper.cs @@ -41,7 +41,7 @@ public void TryRegisterSubscriptionForResource(string providerName = "Microsoft. public void TryCreateResourceGroup(string resourceGroupName, string location) { - ResourceGroup result = _client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location }); + _client.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup { Location = location }); var newlyCreatedGroup = _client.ResourceGroups.Get(resourceGroupName); ThrowIfTrue(newlyCreatedGroup == null, "_client.ResourceGroups.Get returned null."); ThrowIfTrue(!resourceGroupName.Equals(newlyCreatedGroup.Name), string.Format("resourceGroupName is not equal to {0}", resourceGroupName)); @@ -55,18 +55,18 @@ public void DeleteResourceGroup(string resourceGroupName) public void TryCreatingCache(string resourceGroupName, string cacheName, string location) { var redisEnterpriseClient = RedisEnterpriseCacheManagementTestUtilities.GetRedisEnterpriseManagementClient(_testBase, _context); - var createResponse = redisEnterpriseClient.RedisEnterprise.Create(resourceGroupName: resourceGroupName, clusterName: cacheName, - parameters: new Cluster - { - Location = location, - Sku = new Microsoft.Azure.Management.RedisEnterprise.Models.Sku() - { - Name = SkuName.EnterpriseE20, - Capacity = 2 - } - }); + redisEnterpriseClient.RedisEnterprise.Create(resourceGroupName: resourceGroupName, clusterName: cacheName, + parameters: new Cluster + { + Location = location, + Sku = new Microsoft.Azure.Management.RedisEnterprise.Models.Sku() + { + Name = SkuName.EnterpriseE20, + Capacity = 2 + } + }); - Cluster response = redisEnterpriseClient.RedisEnterprise.GetMethod(resourceGroupName: resourceGroupName, clusterName: cacheName); + Cluster response = redisEnterpriseClient.RedisEnterprise.Get(resourceGroupName: resourceGroupName, clusterName: cacheName); ThrowIfTrue(!response.Id.Contains(cacheName), "Cache name not found inside Id."); ThrowIfTrue(!response.Name.Equals(cacheName), string.Format("Cache name is not equal to {0}", cacheName)); ThrowIfTrue(!response.HostName.Contains(cacheName), "Cache name not found inside host name."); @@ -75,7 +75,7 @@ public void TryCreatingCache(string resourceGroupName, string cacheName, string for (int i = 0; i < 60; i++) { TestUtilities.Wait(new TimeSpan(0, 0, 30)); - Cluster responseGet = redisEnterpriseClient.RedisEnterprise.GetMethod(resourceGroupName: resourceGroupName, clusterName: cacheName); + Cluster responseGet = redisEnterpriseClient.RedisEnterprise.Get(resourceGroupName: resourceGroupName, clusterName: cacheName); if ("succeeded".Equals(responseGet.ProvisioningState, StringComparison.OrdinalIgnoreCase)) { break; diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs index 28c40258f854..9c3cd4b9e2df 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/RedisEnterpriseCacheManagementTestUtilities.cs @@ -13,10 +13,10 @@ public static class RedisEnterpriseCacheManagementTestUtilities /// Default constructor for management clients, using the TestSupport Infrastructure /// /// the test class - /// A redis cache management client, created from the current context (environment variables) - public static redisenterpriseClient GetRedisEnterpriseManagementClient(this TestBase testBase, MockContext context) + /// A Redis Enterprise cache management client, created from the current context (environment variables) + public static RedisEnterpriseManagementClient GetRedisEnterpriseManagementClient(this TestBase testBase, MockContext context) { - return context.GetServiceClient(); + return context.GetServiceClient(); } /// diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs index 0a87e8651817..f57cc8576cd7 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/ScenarioTests/TestsFixture.cs @@ -1,16 +1,9 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Microsoft.Azure.Management.RedisEnterprise; -using Microsoft.Azure.Management.RedisEnterprise.Models; -using Microsoft.Azure.Test; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace AzureRedisEnterpriseCache.Tests { diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json index 00889f6eae75..38236a91fcab 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/BeginCreateFunctionalTests/BeginCreateFunctionalTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/register?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9aecbdad-a0af-4e49-98ea-e3024843a999" + "e782ca94-3381-47a1-aa7b-79878d21774a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "1199" ], "x-ms-request-id": [ - "bee569b4-f2b9-4095-ba89-abe700c8a3b7" + "3b6eb874-d396-44bb-9c5b-b40472ec961e" ], "x-ms-correlation-request-id": [ - "bee569b4-f2b9-4095-ba89-abe700c8a3b7" + "3b6eb874-d396-44bb-9c5b-b40472ec961e" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013207Z:bee569b4-f2b9-4095-ba89-abe700c8a3b7" + "WESTUS:20210217T062731Z:3b6eb874-d396-44bb-9c5b-b40472ec961e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:32:06 GMT" + "Wed, 17 Feb 2021 06:27:31 GMT" ], "Content-Length": [ - "11273" + "12296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\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\": \"Canada 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\": \"Brazil South\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\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-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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ac57ac-2e19-4a25-8fc0-718108ac5824" + "6e2d04bb-829b-4ed1-8307-530377c5b514" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "11999" ], "x-ms-request-id": [ - "d1bca5b4-a60a-42ea-8a8e-6972e01520dc" + "a219ad3b-13dc-4196-b565-313de9fa29e2" ], "x-ms-correlation-request-id": [ - "d1bca5b4-a60a-42ea-8a8e-6972e01520dc" + "a219ad3b-13dc-4196-b565-313de9fa29e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013207Z:d1bca5b4-a60a-42ea-8a8e-6972e01520dc" + "WESTUS:20210217T062731Z:a219ad3b-13dc-4196-b565-313de9fa29e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:32:06 GMT" + "Wed, 17 Feb 2021 06:27:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,29 +114,29 @@ "-1" ], "Content-Length": [ - "11273" + "12296" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\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\": \"Canada 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\": \"Brazil South\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\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-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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin4176?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin5708?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e1c9c486-14ef-4a5d-94e7-6e11aca93be7" + "e1a165d6-0659-4a93-a0d1-e19ad7dc409b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "cd330b31-7443-441e-b3b6-47d8d986c286" + "df64c687-0d9a-4e46-97c8-960ddf9f8dd7" ], "x-ms-correlation-request-id": [ - "cd330b31-7443-441e-b3b6-47d8d986c286" + "df64c687-0d9a-4e46-97c8-960ddf9f8dd7" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013208Z:cd330b31-7443-441e-b3b6-47d8d986c286" + "WESTUS:20210217T062732Z:df64c687-0d9a-4e46-97c8-960ddf9f8dd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,10 +171,10 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:32:07 GMT" + "Wed, 17 Feb 2021 06:27:32 GMT" ], "Content-Length": [ - "201" + "245" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,26 +183,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176\",\r\n \"name\": \"RedisEnterpriseBegin4176\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708\",\r\n \"name\": \"RedisEnterpriseBegin5708\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin4176?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseBegin5708?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a27dd4d-982b-44ca-b640-a4872095c84d" + "eee78cb2-19c7-47a1-ad02-d5e0b5563275" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ] }, "ResponseHeaders": { @@ -216,13 +216,13 @@ "11998" ], "x-ms-request-id": [ - "b935d674-1d7b-4cb6-b625-62e6fb0cceb0" + "6307b740-6f92-49c5-b2f5-4e162681f824" ], "x-ms-correlation-request-id": [ - "b935d674-1d7b-4cb6-b625-62e6fb0cceb0" + "6307b740-6f92-49c5-b2f5-4e162681f824" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013208Z:b935d674-1d7b-4cb6-b625-62e6fb0cceb0" + "WESTUS:20210217T062732Z:6307b740-6f92-49c5-b2f5-4e162681f824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:32:07 GMT" + "Wed, 17 Feb 2021 06:27:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,29 +240,29 @@ "-1" ], "Content-Length": [ - "201" + "245" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176\",\r\n \"name\": \"RedisEnterpriseBegin4176\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708\",\r\n \"name\": \"RedisEnterpriseBegin5708\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"properties\": {\r\n \"minimumTlsVersion\": \"1.2\"\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "89ce36f5-4320-486b-a244-42bb3a8cbba7" + "dd1896aa-18e0-4def-a524-12329f944e0e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -279,16 +279,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/06d75285-7cd6-4db3-9061-95680d583df5?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/3d96f79e-fe97-47dd-85f9-203a85af172a?api-version=2021-03-01" ], "x-ms-request-id": [ - "bc868584-407b-4b25-ab3c-4c03faa418df" + "78e67dd9-34e4-4bec-a563-457cca03f91e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,13 +303,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "56ee6f15-4249-407d-9905-e594d8aef133" + "7709f3bf-a5a0-4260-848e-b5dbb9f9cee5" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013212Z:56ee6f15-4249-407d-9905-e594d8aef133" + "WESTUS:20210217T062736Z:7709f3bf-a5a0-4260-848e-b5dbb9f9cee5" ], "Date": [ - "Thu, 26 Nov 2020 01:32:11 GMT" + "Wed, 17 Feb 2021 06:27:35 GMT" ], "Content-Length": [ "515" @@ -321,26 +321,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "befcfac4-8809-4105-beab-f33c939b781c" + "d4d94f32-0938-48b4-a88c-71d359e65bf7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -351,10 +351,10 @@ "no-cache" ], "x-ms-request-id": [ - "5ce708f6-e86d-4247-a697-07520ff78970" + "19954e2f-8128-4112-bca9-faf44eda03ff" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,13 +369,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "9dc4547f-8844-4904-bee3-f2f8adcc4dbe" + "b1eaf611-0626-47c0-98ed-8d5e37378676" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013212Z:9dc4547f-8844-4904-bee3-f2f8adcc4dbe" + "WESTUS:20210217T062736Z:b1eaf611-0626-47c0-98ed-8d5e37378676" ], "Date": [ - "Thu, 26 Nov 2020 01:32:12 GMT" + "Wed, 17 Feb 2021 06:27:36 GMT" ], "Content-Length": [ "552" @@ -387,26 +387,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04e127a1-1c9f-48fe-b831-4ed7e31501ff" + "a2f217cc-4538-4574-82ec-a87c5f331442" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -417,10 +417,10 @@ "no-cache" ], "x-ms-request-id": [ - "d0bdc57b-ea1f-4756-a52a-4267e4097608" + "606cab12-a00f-4de2-8d36-84d1d508b2d8" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -435,13 +435,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "2fb01ebe-8fbb-4a53-9adf-9265eb186142" + "053706ab-075e-4f79-b1a3-33e149fe8b5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013242Z:2fb01ebe-8fbb-4a53-9adf-9265eb186142" + "WESTUS:20210217T062806Z:053706ab-075e-4f79-b1a3-33e149fe8b5a" ], "Date": [ - "Thu, 26 Nov 2020 01:32:41 GMT" + "Wed, 17 Feb 2021 06:28:06 GMT" ], "Content-Length": [ "552" @@ -453,26 +453,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7989e47b-aa1a-4696-8f43-c7c109f7b715" + "da034c83-530a-4d5f-9d34-5c361fedd531" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -483,10 +483,10 @@ "no-cache" ], "x-ms-request-id": [ - "53720c85-dce6-40cb-9465-202991420569" + "2d144c72-fd34-4c9f-bd94-74e3bfe7a55b" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,13 +501,13 @@ "11997" ], "x-ms-correlation-request-id": [ - "75abb8c2-84d8-4498-a4b1-40c493757d9f" + "97042ad3-8fec-4ef6-9a6a-16737853663d" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013312Z:75abb8c2-84d8-4498-a4b1-40c493757d9f" + "WESTUS:20210217T062837Z:97042ad3-8fec-4ef6-9a6a-16737853663d" ], "Date": [ - "Thu, 26 Nov 2020 01:33:11 GMT" + "Wed, 17 Feb 2021 06:28:36 GMT" ], "Content-Length": [ "552" @@ -519,26 +519,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "358a550f-ba41-4ca9-8347-cec487531110" + "b19b20f4-bccb-4477-92a5-11ed8ecb474f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -549,10 +549,10 @@ "no-cache" ], "x-ms-request-id": [ - "71c20f62-25b7-49f1-ac1a-667a79250bce" + "967b12ea-3929-4096-afce-037f0583188d" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -567,13 +567,13 @@ "11996" ], "x-ms-correlation-request-id": [ - "de142fcb-34b6-4dc0-bfd1-c20155c1b182" + "af9100d5-d921-4127-8a09-c41ba7445559" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013342Z:de142fcb-34b6-4dc0-bfd1-c20155c1b182" + "WESTUS:20210217T062907Z:af9100d5-d921-4127-8a09-c41ba7445559" ], "Date": [ - "Thu, 26 Nov 2020 01:33:42 GMT" + "Wed, 17 Feb 2021 06:29:06 GMT" ], "Content-Length": [ "552" @@ -585,26 +585,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f60f3058-6968-43aa-a7db-252d0257fc54" + "208db1e0-a398-4faf-84b1-b09bef28eebc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -615,10 +615,10 @@ "no-cache" ], "x-ms-request-id": [ - "06c2fbf1-786c-4a97-8010-a26cb5627ae1" + "f3e33f03-d8ba-442c-902f-7ed5ac852e83" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,13 +633,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "f389eb1a-1c0e-47b2-a75d-d29b4b004e12" + "79df802a-0a35-4810-bf92-ad39561107ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013413Z:f389eb1a-1c0e-47b2-a75d-d29b4b004e12" + "WESTUS:20210217T062937Z:79df802a-0a35-4810-bf92-ad39561107ff" ], "Date": [ - "Thu, 26 Nov 2020 01:34:12 GMT" + "Wed, 17 Feb 2021 06:29:36 GMT" ], "Content-Length": [ "552" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82dc916e-fada-4354-ae67-1166d463d5d0" + "92869020-7de3-4749-a37a-3ba11f3ffced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -681,10 +681,10 @@ "no-cache" ], "x-ms-request-id": [ - "fe2802a9-ab3c-42f1-baf3-3164086d3c67" + "526b6a43-d37b-4682-a1e2-05b082cd8dfc" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,13 +699,13 @@ "11994" ], "x-ms-correlation-request-id": [ - "69a916ae-ab76-431b-99e0-aaf730a3afae" + "77be4b45-02d2-4742-a741-02ce953914d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013443Z:69a916ae-ab76-431b-99e0-aaf730a3afae" + "WESTUS:20210217T063007Z:77be4b45-02d2-4742-a741-02ce953914d1" ], "Date": [ - "Thu, 26 Nov 2020 01:34:42 GMT" + "Wed, 17 Feb 2021 06:30:06 GMT" ], "Content-Length": [ "552" @@ -717,26 +717,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd4809b0-0848-4ee3-9e4d-fee53cb7c64f" + "99f007ad-74f1-4eab-a400-f8e587a4a124" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -747,10 +747,10 @@ "no-cache" ], "x-ms-request-id": [ - "cd8efb52-85f0-459c-b45a-8f48869b32b8" + "6d36f9be-e55c-4ea5-83de-afc8d4d27657" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -765,13 +765,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "5d3737f2-7183-4438-b494-f52d794432a5" + "e5c5dbc1-9d0f-4d13-9c35-9cdbbd4a6190" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013513Z:5d3737f2-7183-4438-b494-f52d794432a5" + "WESTUS:20210217T063037Z:e5c5dbc1-9d0f-4d13-9c35-9cdbbd4a6190" ], "Date": [ - "Thu, 26 Nov 2020 01:35:13 GMT" + "Wed, 17 Feb 2021 06:30:37 GMT" ], "Content-Length": [ "552" @@ -783,26 +783,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37498130-0b2a-40cd-ab03-da715838258e" + "c6876ce3-4976-421e-b23e-aac4ae41a743" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -813,10 +813,10 @@ "no-cache" ], "x-ms-request-id": [ - "6094dbff-d16d-4fd5-a49a-8384b3516169" + "8557f7ba-af24-4046-babb-219b9eb308b3" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,13 +831,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "bc80fed0-c560-443b-bf21-092a40d11a46" + "9b7b00eb-4a62-471e-b2e5-0bfedde73f73" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013543Z:bc80fed0-c560-443b-bf21-092a40d11a46" + "WESTUS:20210217T063107Z:9b7b00eb-4a62-471e-b2e5-0bfedde73f73" ], "Date": [ - "Thu, 26 Nov 2020 01:35:43 GMT" + "Wed, 17 Feb 2021 06:31:07 GMT" ], "Content-Length": [ "552" @@ -849,26 +849,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae0223c7-b4bd-4538-b272-51bae695ac03" + "32284568-975e-438d-8d5c-239b73f523df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -879,10 +879,10 @@ "no-cache" ], "x-ms-request-id": [ - "afd0b0ca-c419-4a70-98fb-b6d8bf561bd3" + "9f23d4ff-f234-4749-b1a5-cfe2138d6bd5" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -890,20 +890,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], "x-ms-correlation-request-id": [ - "43b61235-3d21-4951-aef7-c502e878642a" + "65699a13-b79f-43b3-b788-fd97df419ef8" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013613Z:43b61235-3d21-4951-aef7-c502e878642a" + "WESTUS:20210217T063137Z:65699a13-b79f-43b3-b788-fd97df419ef8" ], "Date": [ - "Thu, 26 Nov 2020 01:36:12 GMT" + "Wed, 17 Feb 2021 06:31:37 GMT" ], "Content-Length": [ "552" @@ -915,26 +915,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaea8071-be50-4e17-a14d-eb038625c81f" + "ab6ab287-5b64-4d2a-87c0-a9bbf9a5efd6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -945,10 +945,10 @@ "no-cache" ], "x-ms-request-id": [ - "528df08f-9b35-4716-ad01-cee1ccd4b29c" + "75964b6f-5bfe-4187-bb65-92af46b176a7" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -963,13 +963,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "dc7bc5a0-d351-41b8-838c-9446fd380233" + "c243eca0-75e3-44a3-affd-5745a5d2b065" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013644Z:dc7bc5a0-d351-41b8-838c-9446fd380233" + "WESTUS:20210217T063208Z:c243eca0-75e3-44a3-affd-5745a5d2b065" ], "Date": [ - "Thu, 26 Nov 2020 01:36:43 GMT" + "Wed, 17 Feb 2021 06:32:07 GMT" ], "Content-Length": [ "552" @@ -981,26 +981,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9927d52a-4c03-469d-8160-32412a4eeb8c" + "d195a6f1-e1b7-4341-87b5-540b5ec495d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1011,10 +1011,10 @@ "no-cache" ], "x-ms-request-id": [ - "ea273263-1b5a-434c-ad5f-f1e799501d1c" + "a7f5acba-b154-4b7b-95d6-c4e55ab84d65" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,13 +1029,13 @@ "11989" ], "x-ms-correlation-request-id": [ - "28cdacb1-f284-4412-a042-7818cad6ded7" + "08c648f6-99c2-47a8-9fa8-dcba703b5a76" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013714Z:28cdacb1-f284-4412-a042-7818cad6ded7" + "WESTUS:20210217T063238Z:08c648f6-99c2-47a8-9fa8-dcba703b5a76" ], "Date": [ - "Thu, 26 Nov 2020 01:37:14 GMT" + "Wed, 17 Feb 2021 06:32:37 GMT" ], "Content-Length": [ "552" @@ -1047,26 +1047,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c54b719-1b8e-4073-85d5-a59e8024f84f" + "647a5483-c229-4929-a357-a18e9c90072e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1077,10 +1077,10 @@ "no-cache" ], "x-ms-request-id": [ - "5e40e656-6b6b-4a0e-adcf-287408103bf2" + "db7e60e2-9f67-4ebf-8db6-05b2c8aa1e7e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,13 +1095,13 @@ "11988" ], "x-ms-correlation-request-id": [ - "d5e22c03-12d2-49d1-a252-f9733ae2432c" + "96e6a8fa-c58a-471c-8e3c-78edba3b87d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013744Z:d5e22c03-12d2-49d1-a252-f9733ae2432c" + "WESTUS:20210217T063308Z:96e6a8fa-c58a-471c-8e3c-78edba3b87d7" ], "Date": [ - "Thu, 26 Nov 2020 01:37:43 GMT" + "Wed, 17 Feb 2021 06:33:08 GMT" ], "Content-Length": [ "552" @@ -1113,26 +1113,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4983875a-d454-4de9-9fac-ea7b460607e7" + "04de8916-2cff-4be5-aedf-ec979198f631" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1143,10 +1143,10 @@ "no-cache" ], "x-ms-request-id": [ - "ef5409e4-7c41-4f37-859f-f34f8d452585" + "55553540-e84a-438a-b3b3-ca27e3db7e5d" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,20 +1154,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-correlation-request-id": [ - "4759242c-af70-46a2-8a0e-79400cccec0f" + "5d32960d-81fa-4adc-b9eb-1940e5720ea3" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013814Z:4759242c-af70-46a2-8a0e-79400cccec0f" + "WESTUS:20210217T063338Z:5d32960d-81fa-4adc-b9eb-1940e5720ea3" ], "Date": [ - "Thu, 26 Nov 2020 01:38:13 GMT" + "Wed, 17 Feb 2021 06:33:38 GMT" ], "Content-Length": [ "552" @@ -1179,32 +1179,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/databases/default?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODcvZGF0YWJhc2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"ERROR_RATE 0.00 INITIAL_SIZE 400\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"args\": \"RETENTION_POLICY 20\"\r\n },\r\n {\r\n \"name\": \"RediSearch\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436cf164-55e6-4dd1-b757-1c17560257b5" + "ec5f4425-15b2-4501-9d81-b1dfa413251d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "409" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1214,17 +1208,11 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/databases/default?api-version=2020-10-01-preview" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/bb4c0ef9-79b7-4c69-b7b2-48827f1d17b2?api-version=2020-10-01-preview" - ], "x-ms-request-id": [ - "892356ac-61c1-4571-8a22-3c179f3bbc8e" + "47efc90d-a932-4b08-88cb-2e2cfa863036" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1235,20 +1223,20 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], "x-ms-correlation-request-id": [ - "69d532d2-a2c5-4300-b151-cefdca79f040" + "0ae2b36d-5dce-4aac-8920-f4f6c01d8973" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013814Z:69d532d2-a2c5-4300-b151-cefdca79f040" + "WESTUS:20210217T063408Z:0ae2b36d-5dce-4aac-8920-f4f6c01d8973" ], "Date": [ - "Thu, 26 Nov 2020 01:38:14 GMT" + "Wed, 17 Feb 2021 06:34:08 GMT" ], "Content-Length": [ - "762" + "552" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,26 +1245,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"version\": \"1.4.5\"\r\n },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"version\": \"2.0.1\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODc/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "645e58b9-f614-4ded-99b8-783f5bcb64ac" + "0c736206-e003-4d06-93bd-8ff7919e8ec3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1286,17 +1274,11 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/operationresults/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview" - ], "x-ms-request-id": [ - "158cbcce-a2b0-49fe-9338-f8a07aa71bb1" + "2de988a1-3a62-4ba3-960c-360c4295311e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1307,17 +1289,17 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" ], "x-ms-correlation-request-id": [ - "ebc61b3a-e68d-461d-b3e6-fae5228355ef" + "59f311f9-09d8-4ec4-b699-4d5c0e963f0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013815Z:ebc61b3a-e68d-461d-b3e6-fae5228355ef" + "WESTUS:20210217T063439Z:59f311f9-09d8-4ec4-b699-4d5c0e963f0b" ], "Date": [ - "Thu, 26 Nov 2020 01:38:14 GMT" + "Wed, 17 Feb 2021 06:34:38 GMT" ], "Content-Length": [ "552" @@ -1329,20 +1311,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin1287\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79c71e1c-75ab-4ef3-b5b8-8ea6463c7fda" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1353,10 +1341,10 @@ "no-cache" ], "x-ms-request-id": [ - "50627c87-fd05-4605-8d0b-a22b5ad0d685" + "a12e857f-3284-4768-b03d-7ebab69749f4" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1368,19 +1356,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11984" ], "x-ms-correlation-request-id": [ - "0421ec2e-a191-44de-a605-0c26b628e88a" + "eddcc177-86aa-40f9-83c8-3d65cbd16676" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013845Z:0421ec2e-a191-44de-a605-0c26b628e88a" + "WESTUS:20210217T063509Z:eddcc177-86aa-40f9-83c8-3d65cbd16676" ], "Date": [ - "Thu, 26 Nov 2020 01:38:45 GMT" + "Wed, 17 Feb 2021 06:35:09 GMT" ], "Content-Length": [ - "320" + "552" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1389,20 +1377,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "51b08d3e-e11c-4399-96f2-19742c3e6dfa" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1413,10 +1407,10 @@ "no-cache" ], "x-ms-request-id": [ - "f62f7685-9785-4fdb-86c3-8f0abb55b9a8" + "7d2eb18d-e124-4ad1-a9ce-0d49d32f3cb1" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,19 +1422,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-correlation-request-id": [ - "bd19125d-2e96-49b0-9092-b99bccbbe74f" + "b108c83a-0bf5-4c87-82e7-bcfc0854f4f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013915Z:bd19125d-2e96-49b0-9092-b99bccbbe74f" + "WESTUS:20210217T063539Z:b108c83a-0bf5-4c87-82e7-bcfc0854f4f4" ], "Date": [ - "Thu, 26 Nov 2020 01:39:15 GMT" + "Wed, 17 Feb 2021 06:35:38 GMT" ], "Content-Length": [ - "320" + "552" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1449,20 +1443,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3860cabf-5d48-40f1-a69b-ab66a7e6660e" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1473,10 +1473,10 @@ "no-cache" ], "x-ms-request-id": [ - "cf386768-3672-4620-8871-2c05969028cd" + "e2a98e27-5636-416f-9278-abcc5d21b5d7" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,19 +1488,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11982" ], "x-ms-correlation-request-id": [ - "82d9da60-6e59-4676-9e82-5f525762e70c" + "4da30b6a-6791-437f-a3c8-74ef4da0796a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T013945Z:82d9da60-6e59-4676-9e82-5f525762e70c" + "WESTUS:20210217T063609Z:4da30b6a-6791-437f-a3c8-74ef4da0796a" ], "Date": [ - "Thu, 26 Nov 2020 01:39:45 GMT" + "Wed, 17 Feb 2021 06:36:08 GMT" ], "Content-Length": [ - "320" + "552" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1509,20 +1509,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/databases/default?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjEvZGF0YWJhc2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"persistence\": {\r\n \"aofEnabled\": true,\r\n \"aofFrequency\": \"1s\"\r\n },\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"ERROR_RATE 0.00 INITIAL_SIZE 400\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"args\": \"RETENTION_POLICY 20\"\r\n },\r\n {\r\n \"name\": \"RediSearch\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "c06c616d-7519-4fe0-8757-7c3d8752a31f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "494" ] }, "ResponseHeaders": { @@ -1532,11 +1544,17 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/databases/default?api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2ee0093a-0329-4f83-953b-63272bf80d32?api-version=2021-03-01" + ], "x-ms-request-id": [ - "ca3ffc63-6b09-49ef-af27-b13a7b762dd7" + "142cc1a6-5ca0-4e19-abbf-b51edfcedb16" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1547,20 +1565,20 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "c6e52880-dc3b-4a83-b906-d6f34c6f966b" + "9a0177d5-305c-45ff-9482-9b79d7177599" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014016Z:c6e52880-dc3b-4a83-b906-d6f34c6f966b" + "WESTUS:20210217T063609Z:9a0177d5-305c-45ff-9482-9b79d7177599" ], "Date": [ - "Thu, 26 Nov 2020 01:40:15 GMT" + "Wed, 17 Feb 2021 06:36:09 GMT" ], "Content-Length": [ - "320" + "876" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1569,20 +1587,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"ERROR_RATE 0.00 INITIAL_SIZE 400\",\r\n \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"args\": \"RETENTION_POLICY 20\",\r\n \"version\": \"1.4.5\"\r\n },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"args\": \"\",\r\n \"version\": \"2.0.1\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/databases/default?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjEvZGF0YWJhc2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aaf884b9-5cc1-44bd-9df6-e32c255c3da4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1593,10 +1617,10 @@ "no-cache" ], "x-ms-request-id": [ - "2aa298c5-75e0-4991-8a1c-017c646cc54b" + "b5109a32-c3ac-44e2-8a7d-0fa2cde95061" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1604,23 +1628,23 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], "x-ms-correlation-request-id": [ - "2aaf4c53-dc66-404e-8bb2-854e6e9ed33d" + "75349df4-a3e8-47ec-bb5e-cd00409f6c8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014046Z:2aaf4c53-dc66-404e-8bb2-854e6e9ed33d" + "WESTUS:20210217T063609Z:75349df4-a3e8-47ec-bb5e-cd00409f6c8f" ], "Date": [ - "Thu, 26 Nov 2020 01:40:45 GMT" + "Wed, 17 Feb 2021 06:36:09 GMT" ], "Content-Length": [ - "320" + "648" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1629,20 +1653,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Encrypted\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"OSSCluster\",\r\n \"evictionPolicy\": \"NoEviction\",\r\n \"modules\": [\r\n {\r\n \"name\": \"RedisBloom\",\r\n \"args\": \"ERROR_RATE 0.00 INITIAL_SIZE 400\",\r\n \"version\": \"2.2.4\"\r\n },\r\n {\r\n \"name\": \"RedisTimeSeries\",\r\n \"args\": \"RETENTION_POLICY 20\",\r\n \"version\": \"1.4.5\"\r\n },\r\n {\r\n \"name\": \"RediSearch\",\r\n \"args\": \"\",\r\n \"version\": \"2.0.1\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjE/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "33febdaf-c4f1-4112-9529-1a4cb80c00e9" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1652,11 +1682,17 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/operationresults/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01" + ], "x-ms-request-id": [ - "beffc7dd-5d99-4af7-aac3-be8e4681c715" + "38cb04d2-b861-4b6b-9915-02e31de0145e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1667,20 +1703,20 @@ "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "b833588b-dd6b-4383-980f-a93b3cd694bb" + "ce5cf02a-42de-4ad5-a560-0ab8e43eeb70" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014116Z:b833588b-dd6b-4383-980f-a93b3cd694bb" + "WESTUS:20210217T063610Z:ce5cf02a-42de-4ad5-a560-0ab8e43eeb70" ], "Date": [ - "Thu, 26 Nov 2020 01:41:16 GMT" + "Wed, 17 Feb 2021 06:36:10 GMT" ], "Content-Length": [ - "320" + "552" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,20 +1725,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseBegin9021\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Enterprise_E10\",\r\n \"capacity\": 2\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1713,10 +1749,10 @@ "no-cache" ], "x-ms-request-id": [ - "2565f27e-7392-4933-b16e-670c61281d52" + "963c29ef-daab-40e1-8ab4-7541035cc83e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,16 +1767,16 @@ "11980" ], "x-ms-correlation-request-id": [ - "b2a45ef1-42c0-4c70-869f-5585a90b4022" + "f9425dff-31b9-4ea7-923e-c37041617beb" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014146Z:b2a45ef1-42c0-4c70-869f-5585a90b4022" + "WESTUS:20210217T063640Z:f9425dff-31b9-4ea7-923e-c37041617beb" ], "Date": [ - "Thu, 26 Nov 2020 01:41:46 GMT" + "Wed, 17 Feb 2021 06:36:40 GMT" ], "Content-Length": [ - "320" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1749,20 +1785,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1773,10 +1809,10 @@ "no-cache" ], "x-ms-request-id": [ - "7aeb12af-35b5-4877-a353-e6b750ef082b" + "a11ce38f-7317-4cdd-a075-75e26b0bf1d3" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1791,16 +1827,16 @@ "11979" ], "x-ms-correlation-request-id": [ - "57de541e-f3bf-47c5-8e60-43bde8a21739" + "30f6caa5-8f7b-4877-912e-7d7b91fdc403" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014216Z:57de541e-f3bf-47c5-8e60-43bde8a21739" + "WESTUS:20210217T063710Z:30f6caa5-8f7b-4877-912e-7d7b91fdc403" ], "Date": [ - "Thu, 26 Nov 2020 01:42:16 GMT" + "Wed, 17 Feb 2021 06:37:10 GMT" ], "Content-Length": [ - "320" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1809,20 +1845,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1833,10 +1869,10 @@ "no-cache" ], "x-ms-request-id": [ - "98712adc-1eea-42ff-b60a-cd06440a1948" + "ef1257fc-8559-46c1-b3bf-274344cbfc2a" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,16 +1887,16 @@ "11978" ], "x-ms-correlation-request-id": [ - "47b1e807-5d85-41a8-8995-e34532247b6d" + "9bc69dd6-a192-4668-b6fe-5778183fdc9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014246Z:47b1e807-5d85-41a8-8995-e34532247b6d" + "WESTUS:20210217T063741Z:9bc69dd6-a192-4668-b6fe-5778183fdc9b" ], "Date": [ - "Thu, 26 Nov 2020 01:42:46 GMT" + "Wed, 17 Feb 2021 06:37:40 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1869,20 +1905,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1893,10 +1929,10 @@ "no-cache" ], "x-ms-request-id": [ - "0c4751f5-536c-4a5d-8fc0-8f5561f346cd" + "eae6e22c-5447-44a1-9fe5-afc6825fe475" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1911,16 +1947,16 @@ "11977" ], "x-ms-correlation-request-id": [ - "16ead579-7b5b-4b1a-bdeb-2bd68e2f921c" + "1c5f920a-f4c4-439c-bf9d-5cdc23149af3" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014317Z:16ead579-7b5b-4b1a-bdeb-2bd68e2f921c" + "WESTUS:20210217T063811Z:1c5f920a-f4c4-439c-bf9d-5cdc23149af3" ], "Date": [ - "Thu, 26 Nov 2020 01:43:16 GMT" + "Wed, 17 Feb 2021 06:38:11 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,20 +1965,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1953,10 +1989,10 @@ "no-cache" ], "x-ms-request-id": [ - "5ced833c-1591-42fb-9008-761a1d3842a8" + "63166ef3-c3de-4898-af6d-cd73f5ae4f86" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1971,16 +2007,16 @@ "11976" ], "x-ms-correlation-request-id": [ - "d6a1742b-d13a-4905-9c10-2f85be75360c" + "5c448527-77c0-44d6-a39b-8db69e638121" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014347Z:d6a1742b-d13a-4905-9c10-2f85be75360c" + "WESTUS:20210217T063841Z:5c448527-77c0-44d6-a39b-8db69e638121" ], "Date": [ - "Thu, 26 Nov 2020 01:43:46 GMT" + "Wed, 17 Feb 2021 06:38:40 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1989,20 +2025,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2013,10 +2049,10 @@ "no-cache" ], "x-ms-request-id": [ - "b7acae0d-1402-4001-a18c-a7690bae4f8c" + "d812b037-cfe4-40b2-8dea-e600621e9e2a" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,16 +2067,16 @@ "11975" ], "x-ms-correlation-request-id": [ - "259fa4f8-3719-4c71-9d2f-02b91d90f1d2" + "dc4398d2-5302-4056-b1b0-da1748e47c86" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014417Z:259fa4f8-3719-4c71-9d2f-02b91d90f1d2" + "WESTUS:20210217T063911Z:dc4398d2-5302-4056-b1b0-da1748e47c86" ], "Date": [ - "Thu, 26 Nov 2020 01:44:16 GMT" + "Wed, 17 Feb 2021 06:39:10 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2049,20 +2085,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2073,10 +2109,10 @@ "no-cache" ], "x-ms-request-id": [ - "267049d6-32a1-4c9d-9b2a-6a3f7b2c79c0" + "9f0919f9-4251-470e-9f5e-59d6a6f72f5b" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2091,16 +2127,16 @@ "11974" ], "x-ms-correlation-request-id": [ - "47b67269-4963-4f6a-9c11-6873298491ff" + "d9257b12-8f41-4c4d-b671-3c81cb47bd5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014447Z:47b67269-4963-4f6a-9c11-6873298491ff" + "WESTUS:20210217T063941Z:d9257b12-8f41-4c4d-b671-3c81cb47bd5c" ], "Date": [ - "Thu, 26 Nov 2020 01:44:47 GMT" + "Wed, 17 Feb 2021 06:39:40 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2109,20 +2145,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2133,10 +2169,10 @@ "no-cache" ], "x-ms-request-id": [ - "2639133b-727a-4cf3-b850-071d18fb0557" + "50d8708b-3648-4b82-b5b1-a4659384e6fa" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,16 +2187,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "6aa3b5c4-ce5d-4e17-b48b-cfffe9b631e5" + "a30701af-538c-4bc5-8e11-8725566e22b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014517Z:6aa3b5c4-ce5d-4e17-b48b-cfffe9b631e5" + "WESTUS:20210217T064011Z:a30701af-538c-4bc5-8e11-8725566e22b9" ], "Date": [ - "Thu, 26 Nov 2020 01:45:16 GMT" + "Wed, 17 Feb 2021 06:40:10 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2169,20 +2205,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2193,10 +2229,10 @@ "no-cache" ], "x-ms-request-id": [ - "25ece863-a155-4871-851e-a7c0f939b758" + "3840bc21-a263-44f8-92ec-0877793bb31a" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,16 +2247,16 @@ "11972" ], "x-ms-correlation-request-id": [ - "3c05ea65-403a-43b7-aa3d-f7f68938a503" + "6b01532e-db17-405d-8c30-0dae98da30e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014547Z:3c05ea65-403a-43b7-aa3d-f7f68938a503" + "WESTUS:20210217T064042Z:6b01532e-db17-405d-8c30-0dae98da30e2" ], "Date": [ - "Thu, 26 Nov 2020 01:45:47 GMT" + "Wed, 17 Feb 2021 06:40:41 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2229,20 +2265,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2253,10 +2289,10 @@ "no-cache" ], "x-ms-request-id": [ - "f864bb70-f200-4be9-a763-123eadb2ad18" + "ebe206be-8144-46c0-bce7-4371433de467" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2271,16 +2307,16 @@ "11971" ], "x-ms-correlation-request-id": [ - "6e44c484-4078-41de-9cb3-3902b0cae68f" + "9db48db0-2d6e-4c2d-b917-6de4fc074667" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014618Z:6e44c484-4078-41de-9cb3-3902b0cae68f" + "WESTUS:20210217T064112Z:9db48db0-2d6e-4c2d-b917-6de4fc074667" ], "Date": [ - "Thu, 26 Nov 2020 01:46:17 GMT" + "Wed, 17 Feb 2021 06:41:11 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2289,20 +2325,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2313,10 +2349,10 @@ "no-cache" ], "x-ms-request-id": [ - "a6edef12-8fb0-42ba-a85d-798ee14c533c" + "65caefb5-4a07-41bb-b37f-fe9555c7180a" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,16 +2367,16 @@ "11970" ], "x-ms-correlation-request-id": [ - "4f169e44-5aff-485c-ba99-d437c5a906c3" + "92bcd391-fce0-495d-bc08-6c089a99c99c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014648Z:4f169e44-5aff-485c-ba99-d437c5a906c3" + "WESTUS:20210217T064142Z:92bcd391-fce0-495d-bc08-6c089a99c99c" ], "Date": [ - "Thu, 26 Nov 2020 01:46:47 GMT" + "Wed, 17 Feb 2021 06:41:41 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2349,20 +2385,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2373,10 +2409,10 @@ "no-cache" ], "x-ms-request-id": [ - "da316c80-a6ac-4f5e-b3ac-b70c3f1f75a3" + "290070cc-d37a-4f4d-932f-1a56ad1c2ea7" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2391,16 +2427,16 @@ "11969" ], "x-ms-correlation-request-id": [ - "9147f414-000c-46da-8f31-fe0187540659" + "10ed9397-978c-4cdb-be82-837561f64b03" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014718Z:9147f414-000c-46da-8f31-fe0187540659" + "WESTUS:20210217T064212Z:10ed9397-978c-4cdb-be82-837561f64b03" ], "Date": [ - "Thu, 26 Nov 2020 01:47:17 GMT" + "Wed, 17 Feb 2021 06:42:11 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2409,20 +2445,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2433,10 +2469,10 @@ "no-cache" ], "x-ms-request-id": [ - "6168e530-fcca-4daf-80a1-cf9cefb78a3e" + "c482dd0a-8a18-4837-aaf3-22de203255aa" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,16 +2487,16 @@ "11968" ], "x-ms-correlation-request-id": [ - "3dc11e4d-933e-47f5-ac43-0648d531eb8a" + "bed385e7-bcd3-42b8-92d4-c795738f8ad5" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014748Z:3dc11e4d-933e-47f5-ac43-0648d531eb8a" + "WESTUS:20210217T064242Z:bed385e7-bcd3-42b8-92d4-c795738f8ad5" ], "Date": [ - "Thu, 26 Nov 2020 01:47:48 GMT" + "Wed, 17 Feb 2021 06:42:41 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2469,20 +2505,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2493,10 +2529,10 @@ "no-cache" ], "x-ms-request-id": [ - "02969504-b923-4c7d-8530-25a094dd2f08" + "2616e758-35d9-40d6-abf8-e825ef778bfa" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2511,16 +2547,16 @@ "11967" ], "x-ms-correlation-request-id": [ - "8aa8e84c-9a1f-44a5-8b01-350ff403e462" + "8bc63f7b-4ceb-4330-ac69-962fe8cf8a2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014818Z:8aa8e84c-9a1f-44a5-8b01-350ff403e462" + "WESTUS:20210217T064312Z:8bc63f7b-4ceb-4330-ac69-962fe8cf8a2c" ], "Date": [ - "Thu, 26 Nov 2020 01:48:18 GMT" + "Wed, 17 Feb 2021 06:43:11 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2529,20 +2565,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2553,10 +2589,10 @@ "no-cache" ], "x-ms-request-id": [ - "9fab389c-f23b-4050-af78-a271e548ea32" + "3d69964c-a949-4d3a-9d05-50e07f365a78" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2571,16 +2607,16 @@ "11966" ], "x-ms-correlation-request-id": [ - "f3148f9a-d6a6-4d85-9230-107e4fda2140" + "f69977df-02e1-4d45-8508-624e3546888d" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014848Z:f3148f9a-d6a6-4d85-9230-107e4fda2140" + "WESTUS:20210217T064342Z:f69977df-02e1-4d45-8508-624e3546888d" ], "Date": [ - "Thu, 26 Nov 2020 01:48:47 GMT" + "Wed, 17 Feb 2021 06:43:42 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2589,20 +2625,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2613,10 +2649,10 @@ "no-cache" ], "x-ms-request-id": [ - "2a2f830a-9384-40e6-962e-47fee83a70a7" + "596d7171-a7dd-4c61-8732-cca1a8d1c076" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,16 +2667,16 @@ "11965" ], "x-ms-correlation-request-id": [ - "0e3e77ce-39da-4813-a174-b0a25f5b8a7b" + "e7876ea9-82d1-4262-b04d-52f6bc6e0b88" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014918Z:0e3e77ce-39da-4813-a174-b0a25f5b8a7b" + "WESTUS:20210217T064412Z:e7876ea9-82d1-4262-b04d-52f6bc6e0b88" ], "Date": [ - "Thu, 26 Nov 2020 01:49:17 GMT" + "Wed, 17 Feb 2021 06:44:12 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2649,20 +2685,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:38:45.5725777-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzJiMWFiMDg2LTQ0YTUtNDQ4Yi1iNTA3LWJhOGNlMWQwYzM5ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2673,10 +2709,10 @@ "no-cache" ], "x-ms-request-id": [ - "2bd3251b-2004-4a8e-aedf-a2bd4e386add" + "44c075d3-15ac-4541-b2c1-0c235295f43e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2684,20 +2720,80 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ + "f41e3635-adc2-4377-adcb-af59d1a8fdf8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20210217T064443Z:f41e3635-adc2-4377-adcb-af59d1a8fdf8" + ], + "Date": [ + "Wed, 17 Feb 2021 06:44:42 GMT" + ], + "Content-Length": [ + "319" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:37:14.211457-08:00\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2ZlYTZmMTE5LWViMTctNDJkZC1iZDkwLWM3OTg2MmZhOTNlMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a0b0c966-4245-43de-99b9-c68488f22e54" + ], + "x-rp-server-mvid": [ + "b23cd069-38d7-4d13-87a0-e3f31a877503" + ], + "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": [ - "78a72858-c223-41fa-b48d-1d93cc154e2f" + "b55d06c0-2066-44db-8366-c7cfbf37a456" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014948Z:78a72858-c223-41fa-b48d-1d93cc154e2f" + "WESTUS:20210217T064513Z:b55d06c0-2066-44db-8366-c7cfbf37a456" ], "Date": [ - "Thu, 26 Nov 2020 01:49:48 GMT" + "Wed, 17 Feb 2021 06:45:12 GMT" ], "Content-Length": [ "319" @@ -2709,20 +2805,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"name\": \"2b1ab086-44a5-448b-b507-ba8ce1d0c39e\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-25T17:38:15.3239606-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:30.0169017-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"name\": \"fea6f119-eb17-42dd-bd90-c79862fa93e0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-02-16T22:36:10.2730955-08:00\",\r\n \"endTime\": \"2021-02-16T22:44:59.6617032-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin4176/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287/operationresults/2b1ab086-44a5-448b-b507-ba8ce1d0c39e?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNDE3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjEyODcvb3BlcmF0aW9ucmVzdWx0cy8yYjFhYjA4Ni00NGE1LTQ0OGItYjUwNy1iYThjZTFkMGMzOWU/YXBpLXZlcnNpb249MjAyMC0xMC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseBegin5708/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021/operationresults/fea6f119-eb17-42dd-bd90-c79862fa93e0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUJlZ2luNTcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzRW50ZXJwcmlzZS9SZWRpc0VudGVycHJpc2VCZWdpbjkwMjEvb3BlcmF0aW9ucmVzdWx0cy9mZWE2ZjExOS1lYjE3LTQyZGQtYmQ5MC1jNzk4NjJmYTkzZTA/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2736,13 +2832,13 @@ "gateway" ], "x-ms-request-id": [ - "f1a7197a-3aeb-4cc0-a1ef-de66bd54c65c" + "ee617bd8-b0d6-4464-b9c4-1af16c97fe41" ], "x-ms-correlation-request-id": [ - "f1a7197a-3aeb-4cc0-a1ef-de66bd54c65c" + "ee617bd8-b0d6-4464-b9c4-1af16c97fe41" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014948Z:f1a7197a-3aeb-4cc0-a1ef-de66bd54c65c" + "WESTUS:20210217T064513Z:ee617bd8-b0d6-4464-b9c4-1af16c97fe41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2751,7 +2847,7 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:49:48 GMT" + "Wed, 17 Feb 2021 06:45:12 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2763,14 +2859,14 @@ "252" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin1287' under resource group 'RedisEnterpriseBegin4176' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/redisEnterprise/RedisEnterpriseBegin9021' under resource group 'RedisEnterpriseBegin5708' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 } ], "Names": { "BeginCreateFunctionalTest": [ - "RedisEnterpriseBegin4176", - "RedisEnterpriseBegin1287" + "RedisEnterpriseBegin5708", + "RedisEnterpriseBegin9021" ] }, "Variables": { diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json index 013712c2c94e..926fccfcff34 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlNTI2OD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf3ddb5-d6d4-41f5-8b2e-c3091eb5a032" + "309e3a22-f4ef-41a9-bbd0-1c5cbab24693" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268?api-version=2021-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01" ], "x-ms-request-id": [ - "21cea69f-3b99-4246-9d60-e4d5b2552ecb" + "f48f517c-7681-407a-a108-5965c3e51e70" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,13 +57,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "bc72e65d-1a52-496f-bb5f-68ef4b5a44c2" + "c5fa08ff-5872-46da-a969-c1e0984187df" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014956Z:bc72e65d-1a52-496f-bb5f-68ef4b5a44c2" + "WESTUS:20210217T060920Z:c5fa08ff-5872-46da-a969-c1e0984187df" ], "Date": [ - "Thu, 26 Nov 2020 01:49:56 GMT" + "Wed, 17 Feb 2021 06:09:20 GMT" ], "Content-Length": [ "542" @@ -75,20 +75,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate9588\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5268\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": null,\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -99,10 +99,10 @@ "no-cache" ], "x-ms-request-id": [ - "68ae1498-7055-4c71-b8da-79c83ee20e6b" + "e6c3b053-bcce-4a4d-a3db-daf4bfd247f8" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,13 +117,13 @@ "11999" ], "x-ms-correlation-request-id": [ - "e314e01f-4851-4856-b0e5-7019eb201991" + "37afd47f-88a9-4306-8b77-66d203929f90" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015026Z:e314e01f-4851-4856-b0e5-7019eb201991" + "WESTUS:20210217T060951Z:37afd47f-88a9-4306-8b77-66d203929f90" ], "Date": [ - "Thu, 26 Nov 2020 01:50:26 GMT" + "Wed, 17 Feb 2021 06:09:50 GMT" ], "Content-Length": [ "320" @@ -135,20 +135,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -159,10 +159,10 @@ "no-cache" ], "x-ms-request-id": [ - "22204c69-4cd7-4751-a8ff-de9e358a1eb7" + "2f81fd7f-a6db-495f-91cf-41aa075eb2cd" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,13 +177,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "cf9225a1-f69c-435d-bb95-4ffea5b06934" + "bb842f9a-2e86-4bfd-979a-d0ab29d12d28" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015057Z:cf9225a1-f69c-435d-bb95-4ffea5b06934" + "WESTUS:20210217T061021Z:bb842f9a-2e86-4bfd-979a-d0ab29d12d28" ], "Date": [ - "Thu, 26 Nov 2020 01:50:56 GMT" + "Wed, 17 Feb 2021 06:10:20 GMT" ], "Content-Length": [ "320" @@ -195,20 +195,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -219,10 +219,10 @@ "no-cache" ], "x-ms-request-id": [ - "00d0a4f7-8071-4ba3-80aa-70fb5537e12f" + "976bf2ea-f133-4992-9723-2c62f1915635" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,13 +237,13 @@ "11997" ], "x-ms-correlation-request-id": [ - "f83da45a-d0e7-4335-9572-da57fd9843bf" + "09f51eeb-3fe7-4b7a-8fa7-5af20feda220" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015127Z:f83da45a-d0e7-4335-9572-da57fd9843bf" + "WESTUS:20210217T061051Z:09f51eeb-3fe7-4b7a-8fa7-5af20feda220" ], "Date": [ - "Thu, 26 Nov 2020 01:51:26 GMT" + "Wed, 17 Feb 2021 06:10:50 GMT" ], "Content-Length": [ "320" @@ -255,20 +255,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -279,10 +279,10 @@ "no-cache" ], "x-ms-request-id": [ - "bee0a38b-4d36-4316-bf31-a8675ca1e5a4" + "b0fa4afd-1ea7-4c07-b7fd-6e88035cd373" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,13 +297,13 @@ "11996" ], "x-ms-correlation-request-id": [ - "ae626d6b-32f3-476e-bdd3-46e308d2009b" + "2d5140d8-daa1-4645-8291-7a9ed55ecc8a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015157Z:ae626d6b-32f3-476e-bdd3-46e308d2009b" + "WESTUS:20210217T061121Z:2d5140d8-daa1-4645-8291-7a9ed55ecc8a" ], "Date": [ - "Thu, 26 Nov 2020 01:51:57 GMT" + "Wed, 17 Feb 2021 06:11:21 GMT" ], "Content-Length": [ "320" @@ -315,20 +315,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -339,10 +339,10 @@ "no-cache" ], "x-ms-request-id": [ - "d5d772b4-0025-4c94-880c-b9677e206481" + "8cb1af85-6d98-4233-9b12-2497f7c9ec96" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,13 +357,13 @@ "11995" ], "x-ms-correlation-request-id": [ - "2f6b219c-57da-496c-992b-fa07819785e1" + "9cf8cd8a-4bfc-4a0c-920c-ed0562b8abe0" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015227Z:2f6b219c-57da-496c-992b-fa07819785e1" + "WESTUS:20210217T061151Z:9cf8cd8a-4bfc-4a0c-920c-ed0562b8abe0" ], "Date": [ - "Thu, 26 Nov 2020 01:52:26 GMT" + "Wed, 17 Feb 2021 06:11:51 GMT" ], "Content-Length": [ "320" @@ -375,20 +375,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -399,10 +399,10 @@ "no-cache" ], "x-ms-request-id": [ - "d0d2d891-a29d-45bb-9dc3-72f5a1180f14" + "fe95b432-4dd4-4839-9800-7c66be5ad520" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -417,13 +417,13 @@ "11994" ], "x-ms-correlation-request-id": [ - "28da791a-6309-4b2c-8e1b-a4539b4faad3" + "1e4e6f3d-f7e9-461c-ae95-39eadec02b9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015257Z:28da791a-6309-4b2c-8e1b-a4539b4faad3" + "WESTUS:20210217T061221Z:1e4e6f3d-f7e9-461c-ae95-39eadec02b9f" ], "Date": [ - "Thu, 26 Nov 2020 01:52:56 GMT" + "Wed, 17 Feb 2021 06:12:21 GMT" ], "Content-Length": [ "320" @@ -435,20 +435,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -459,10 +459,10 @@ "no-cache" ], "x-ms-request-id": [ - "652cde85-6503-4b2c-9096-46ec8c94f563" + "97f68de3-c5ea-4879-bb97-a181d2f90dd9" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,13 +477,13 @@ "11993" ], "x-ms-correlation-request-id": [ - "fd1ab4d4-b612-40a7-887f-f80d3f9659fd" + "6248dabb-aa61-4361-9a6b-dec32169834e" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015327Z:fd1ab4d4-b612-40a7-887f-f80d3f9659fd" + "WESTUS:20210217T061251Z:6248dabb-aa61-4361-9a6b-dec32169834e" ], "Date": [ - "Thu, 26 Nov 2020 01:53:27 GMT" + "Wed, 17 Feb 2021 06:12:51 GMT" ], "Content-Length": [ "320" @@ -495,20 +495,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -519,10 +519,10 @@ "no-cache" ], "x-ms-request-id": [ - "ef131ec7-69ee-4873-ae4a-a0ccf2a5981b" + "a9a911e4-267b-4293-a691-0296259b5955" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,13 +537,13 @@ "11992" ], "x-ms-correlation-request-id": [ - "1e4f0cd6-56c4-4b82-a805-9c57381a36dc" + "9a75dda1-2341-4648-b645-10fb8becf278" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015357Z:1e4f0cd6-56c4-4b82-a805-9c57381a36dc" + "WESTUS:20210217T061322Z:9a75dda1-2341-4648-b645-10fb8becf278" ], "Date": [ - "Thu, 26 Nov 2020 01:53:57 GMT" + "Wed, 17 Feb 2021 06:13:21 GMT" ], "Content-Length": [ "320" @@ -555,20 +555,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -579,10 +579,10 @@ "no-cache" ], "x-ms-request-id": [ - "61d81f0c-3ea0-4440-9a09-5eb6fa811da3" + "f6fc5d19-b7ac-4133-8e61-81322c933a7d" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -597,13 +597,13 @@ "11991" ], "x-ms-correlation-request-id": [ - "de1c9c2e-7c02-4f2e-a174-b2e2b6bfc4bf" + "af3918a0-624a-4a85-a269-74dc03071dc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015427Z:de1c9c2e-7c02-4f2e-a174-b2e2b6bfc4bf" + "WESTUS:20210217T061352Z:af3918a0-624a-4a85-a269-74dc03071dc1" ], "Date": [ - "Thu, 26 Nov 2020 01:54:27 GMT" + "Wed, 17 Feb 2021 06:13:51 GMT" ], "Content-Length": [ "320" @@ -615,20 +615,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -639,10 +639,10 @@ "no-cache" ], "x-ms-request-id": [ - "a2deccad-6de4-4f02-be3a-9382c9469ab5" + "03e9d29e-9364-46e6-852c-6fd1a982a47a" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,13 +657,13 @@ "11990" ], "x-ms-correlation-request-id": [ - "fa3566a6-8b49-4cc2-9699-40db902420cf" + "9fa863fa-1f0a-4e2d-91fe-11a43a28af27" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015458Z:fa3566a6-8b49-4cc2-9699-40db902420cf" + "WESTUS:20210217T061422Z:9fa863fa-1f0a-4e2d-91fe-11a43a28af27" ], "Date": [ - "Thu, 26 Nov 2020 01:54:57 GMT" + "Wed, 17 Feb 2021 06:14:21 GMT" ], "Content-Length": [ "320" @@ -675,20 +675,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -699,10 +699,10 @@ "no-cache" ], "x-ms-request-id": [ - "d2f8a66f-8a0b-4b34-83f6-9bfc80a3fc47" + "da4605ff-3652-4499-acaf-8d303e72a173" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,13 +717,13 @@ "11989" ], "x-ms-correlation-request-id": [ - "255ee3dc-80e8-4e4b-bb30-3d80798f3741" + "70e19d5d-0d9d-4aa4-8cab-845f9583f5e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015528Z:255ee3dc-80e8-4e4b-bb30-3d80798f3741" + "WESTUS:20210217T061452Z:70e19d5d-0d9d-4aa4-8cab-845f9583f5e3" ], "Date": [ - "Thu, 26 Nov 2020 01:55:27 GMT" + "Wed, 17 Feb 2021 06:14:51 GMT" ], "Content-Length": [ "320" @@ -735,20 +735,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -759,10 +759,10 @@ "no-cache" ], "x-ms-request-id": [ - "4a338d68-f774-4159-930a-7ecaab208bf6" + "ad03d9cf-d7be-4e86-825b-b89e7e154e2f" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,13 +777,13 @@ "11988" ], "x-ms-correlation-request-id": [ - "bff05d37-9b5d-4f8c-8a81-14546c76ed1a" + "0251e9e3-199d-4a76-9411-aaf19b121223" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015558Z:bff05d37-9b5d-4f8c-8a81-14546c76ed1a" + "WESTUS:20210217T061522Z:0251e9e3-199d-4a76-9411-aaf19b121223" ], "Date": [ - "Thu, 26 Nov 2020 01:55:57 GMT" + "Wed, 17 Feb 2021 06:15:21 GMT" ], "Content-Length": [ "320" @@ -795,20 +795,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -819,10 +819,10 @@ "no-cache" ], "x-ms-request-id": [ - "2c1251b7-48a4-48ab-9aca-e93757ca3506" + "522b7ea7-9a8c-4ad6-9eaa-151338dcb75a" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -837,13 +837,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "02a34a69-9b2d-426b-ae41-9ab5be457b1b" + "e8ddfa6b-20b8-406f-9632-624b9e45d577" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015628Z:02a34a69-9b2d-426b-ae41-9ab5be457b1b" + "WESTUS:20210217T061552Z:e8ddfa6b-20b8-406f-9632-624b9e45d577" ], "Date": [ - "Thu, 26 Nov 2020 01:56:27 GMT" + "Wed, 17 Feb 2021 06:15:52 GMT" ], "Content-Length": [ "320" @@ -855,20 +855,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -879,10 +879,10 @@ "no-cache" ], "x-ms-request-id": [ - "d2495e27-f39c-4cb8-aadb-8c9dec44f6dd" + "0b2835e4-b8a3-478d-94a2-1cef16828fca" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,13 +897,13 @@ "11986" ], "x-ms-correlation-request-id": [ - "d107a2ea-2a13-42c5-84c1-e22b5c9fb81a" + "44d4ca27-f47a-4a95-90ba-96b6c7744479" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015658Z:d107a2ea-2a13-42c5-84c1-e22b5c9fb81a" + "WESTUS:20210217T061623Z:44d4ca27-f47a-4a95-90ba-96b6c7744479" ], "Date": [ - "Thu, 26 Nov 2020 01:56:58 GMT" + "Wed, 17 Feb 2021 06:16:22 GMT" ], "Content-Length": [ "320" @@ -915,20 +915,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -939,10 +939,10 @@ "no-cache" ], "x-ms-request-id": [ - "25a6b441-21d1-4939-9830-0b21fd0b3307" + "15abef59-fce1-4dfd-b7d1-340f5f3bdda9" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,13 +957,13 @@ "11985" ], "x-ms-correlation-request-id": [ - "c473465f-06bc-4cb4-8dee-07a1a0d26456" + "711deff6-d595-498d-a372-335eb2a5eef1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015728Z:c473465f-06bc-4cb4-8dee-07a1a0d26456" + "WESTUS:20210217T061653Z:711deff6-d595-498d-a372-335eb2a5eef1" ], "Date": [ - "Thu, 26 Nov 2020 01:57:28 GMT" + "Wed, 17 Feb 2021 06:16:52 GMT" ], "Content-Length": [ "320" @@ -975,20 +975,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -999,10 +999,10 @@ "no-cache" ], "x-ms-request-id": [ - "79965d1b-dd20-4c15-9605-caa594b5ec67" + "b8f95595-ac59-4b75-8b32-2b567085af2b" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,13 +1017,13 @@ "11984" ], "x-ms-correlation-request-id": [ - "b731d93b-38d5-4359-8a01-2149aab71614" + "43d292b0-d73d-493e-96c5-b0bc53f811ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015758Z:b731d93b-38d5-4359-8a01-2149aab71614" + "WESTUS:20210217T061723Z:43d292b0-d73d-493e-96c5-b0bc53f811ba" ], "Date": [ - "Thu, 26 Nov 2020 01:57:58 GMT" + "Wed, 17 Feb 2021 06:17:22 GMT" ], "Content-Length": [ "320" @@ -1035,20 +1035,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1059,10 +1059,10 @@ "no-cache" ], "x-ms-request-id": [ - "5876c4c3-e470-438d-8c7e-e165341d8e38" + "5475730a-2d65-462b-a242-0650d1e9117f" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,13 +1077,13 @@ "11983" ], "x-ms-correlation-request-id": [ - "e8fe2a46-1e31-4a49-b088-253124da0c62" + "d9a27b3d-1a3a-4f3d-ba29-b9bc386815a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015829Z:e8fe2a46-1e31-4a49-b088-253124da0c62" + "WESTUS:20210217T061753Z:d9a27b3d-1a3a-4f3d-ba29-b9bc386815a0" ], "Date": [ - "Thu, 26 Nov 2020 01:58:28 GMT" + "Wed, 17 Feb 2021 06:17:52 GMT" ], "Content-Length": [ "320" @@ -1095,20 +1095,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:09:20.9579934-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2FjYzNlOTRmLTE5OTctNDRlZS1hMjNiLTcwOGRlMGQxNjIxZD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1119,10 +1119,10 @@ "no-cache" ], "x-ms-request-id": [ - "e97e7092-1c74-459d-8453-fbf1591a948c" + "3688c78b-3942-4b48-9b0e-95f891745e20" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,73 +1137,13 @@ "11982" ], "x-ms-correlation-request-id": [ - "915f11e8-6081-4e86-b642-401197fb051d" + "5db8afa0-684e-4267-8a94-43a9de3a4375" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015859Z:915f11e8-6081-4e86-b642-401197fb051d" + "WESTUS:20210217T061823Z:5db8afa0-684e-4267-8a94-43a9de3a4375" ], "Date": [ - "Thu, 26 Nov 2020 01:58:58 GMT" - ], - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:49:56.5709677-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzLzlhNTY0YmM1LTI2M2YtNDA5Ny04MDIxLTc0YmI5ZTE2MzQyMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c2a82a1c-72d1-41ed-9b81-d158d7367dc0" - ], - "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" - ], - "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": [ - "193fff39-1e9a-4c00-ba6c-2a0e0c577e52" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201126T015929Z:193fff39-1e9a-4c00-ba6c-2a0e0c577e52" - ], - "Date": [ - "Thu, 26 Nov 2020 01:59:28 GMT" + "Wed, 17 Feb 2021 06:18:23 GMT" ], "Content-Length": [ "319" @@ -1215,20 +1155,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"name\": \"9a564bc5-263f-4097-8021-74bb9e163420\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-25T17:49:56.0553044-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:27.6615619-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"name\": \"acc3e94f-1997-44ee-a23b-708de0d1621d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-02-16T22:09:20.3026203-08:00\",\r\n \"endTime\": \"2021-02-16T22:17:55.6948649-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlNTI2OD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1239,10 +1179,10 @@ "no-cache" ], "x-ms-request-id": [ - "1a9926cb-eebd-43b7-ab8b-eb0e5f7fd6bc" + "98fff296-f804-44f2-9525-82ff04e65e50" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,16 +1194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11981" ], "x-ms-correlation-request-id": [ - "b624ad3b-4145-4019-8335-70100aaa46e5" + "f6b649f4-d085-427b-b55a-c01fcf4b9361" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015929Z:b624ad3b-4145-4019-8335-70100aaa46e5" + "WESTUS:20210217T061823Z:f6b649f4-d085-427b-b55a-c01fcf4b9361" ], "Date": [ - "Thu, 26 Nov 2020 01:59:29 GMT" + "Wed, 17 Feb 2021 06:18:23 GMT" ], "Content-Length": [ "579" @@ -1275,26 +1215,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate9588\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5268\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OC9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/databases/default?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlNTI2OC9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5a04c850-93a0-4f51-ad60-54640f5d81ac" + "30a73a8d-f674-4ed4-ab0c-e6e76dccafd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1311,16 +1251,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/databases/default?api-version=2021-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/2c0ccb84-1d3b-42a0-8ee0-0e1384b50dc4?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/26abbeeb-4d82-4231-8da4-73e9dad84231?api-version=2021-03-01" ], "x-ms-request-id": [ - "a5dd428b-fb6b-432a-af5f-919275bc0fd0" + "d9d5e30b-1837-43a2-ba23-421adb13bfc9" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,13 +1275,13 @@ "1198" ], "x-ms-correlation-request-id": [ - "58e77c17-349f-40c9-8977-47892199f731" + "f7728f60-b786-44bc-8878-45ae59792f73" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015929Z:58e77c17-349f-40c9-8977-47892199f731" + "WESTUS:20210217T061824Z:f7728f60-b786-44bc-8878-45ae59792f73" ], "Date": [ - "Thu, 26 Nov 2020 01:59:29 GMT" + "Wed, 17 Feb 2021 06:18:24 GMT" ], "Content-Length": [ "520" @@ -1353,20 +1293,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OC9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/databases/default?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlNTI2OC9kYXRhYmFzZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1377,10 +1317,10 @@ "no-cache" ], "x-ms-request-id": [ - "b0d82d72-39bf-4c46-bf7d-d8d81efd24cc" + "f91f6a09-c5ac-4ee0-ab7e-b8083062770f" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,16 +1332,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11980" ], "x-ms-correlation-request-id": [ - "ea6dca90-1708-4c28-9d38-b48ba1affb73" + "1f2ad691-cf73-4b6b-aad9-4f90b1a5090c" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015929Z:ea6dca90-1708-4c28-9d38-b48ba1affb73" + "WESTUS:20210217T061824Z:1f2ad691-cf73-4b6b-aad9-4f90b1a5090c" ], "Date": [ - "Thu, 26 Nov 2020 01:59:29 GMT" + "Wed, 17 Feb 2021 06:18:24 GMT" ], "Content-Length": [ "452" @@ -1413,26 +1353,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/databases/default\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise/databases\",\r\n \"properties\": {\r\n \"clientProtocol\": \"Plaintext\",\r\n \"port\": 10000,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"clusteringPolicy\": \"EnterpriseCluster\",\r\n \"evictionPolicy\": \"VolatileLRU\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlNTI2OD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f83afac9-8ea1-48fd-a0c8-8e556c5d0263" + "b43ce456-fef9-448b-a762-a61564928110" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1443,16 +1383,16 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/operationresults/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/operationresults/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview" + "https://management.azure.com/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01" ], "x-ms-request-id": [ - "903b0348-6837-49f7-904f-e75f547272dc" + "94133ebb-c52b-40d5-846d-9ddd9140fa1e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,13 +1407,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "a60bdac3-c080-413d-aaa8-623801482c41" + "0f9f93a6-93cb-4ca1-b8d6-e459d836bfb1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T015930Z:a60bdac3-c080-413d-aaa8-623801482c41" + "WESTUS:20210217T061825Z:0f9f93a6-93cb-4ca1-b8d6-e459d836bfb1" ], "Date": [ - "Thu, 26 Nov 2020 01:59:29 GMT" + "Wed, 17 Feb 2021 06:18:25 GMT" ], "Content-Length": [ "579" @@ -1485,20 +1425,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate9588\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"location\": \"East US\",\r\n \"name\": \"RedisEnterpriseCreateUpdate5268\",\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268\",\r\n \"type\": \"Microsoft.Cache/redisEnterprise\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"EnterpriseFlash_F300\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\",\r\n \"resourceState\": \"Deleting\",\r\n \"privateEndpointConnections\": []\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1509,10 +1449,10 @@ "no-cache" ], "x-ms-request-id": [ - "65cfcb13-52c0-412c-83ff-b384eec5f931" + "ce68d0a6-d404-4dbe-a275-5881d63ce56b" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1524,19 +1464,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11979" ], "x-ms-correlation-request-id": [ - "ccfb324d-cd20-4f31-a710-dac03421b86f" + "138b4e9e-d529-44f7-865d-675a23e7c632" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020000Z:ccfb324d-cd20-4f31-a710-dac03421b86f" + "WESTUS:20210217T061855Z:138b4e9e-d529-44f7-865d-675a23e7c632" ], "Date": [ - "Thu, 26 Nov 2020 01:59:59 GMT" + "Wed, 17 Feb 2021 06:18:55 GMT" ], "Content-Length": [ - "320" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,20 +1485,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1569,10 +1509,10 @@ "no-cache" ], "x-ms-request-id": [ - "ef3508e2-5fea-443b-a821-7f5e301d7559" + "8738d023-0e0e-437b-8a92-c38660ca7511" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,19 +1524,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11978" ], "x-ms-correlation-request-id": [ - "d24019f6-cc98-47e4-9731-af7f4fbc4911" + "8346dd07-0975-41f5-b8b1-b1d2152b5818" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020030Z:d24019f6-cc98-47e4-9731-af7f4fbc4911" + "WESTUS:20210217T061925Z:8346dd07-0975-41f5-b8b1-b1d2152b5818" ], "Date": [ - "Thu, 26 Nov 2020 02:00:29 GMT" + "Wed, 17 Feb 2021 06:19:25 GMT" ], "Content-Length": [ - "320" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1605,20 +1545,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"0001-01-01T00:00:00-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1629,10 +1569,10 @@ "no-cache" ], "x-ms-request-id": [ - "2e0442ad-c1eb-4cfb-b8f7-481d5e520363" + "8915099c-0312-4004-9b0e-cdd1b0dc9abe" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1644,16 +1584,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11977" ], "x-ms-correlation-request-id": [ - "00759327-3604-4567-9ffd-4e33f7dff098" + "37b054b3-1f57-4911-9166-b8fd9e2add96" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020100Z:00759327-3604-4567-9ffd-4e33f7dff098" + "WESTUS:20210217T061955Z:37b054b3-1f57-4911-9166-b8fd9e2add96" ], "Date": [ - "Thu, 26 Nov 2020 02:00:59 GMT" + "Wed, 17 Feb 2021 06:19:54 GMT" ], "Content-Length": [ "320" @@ -1665,20 +1605,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1689,10 +1629,10 @@ "no-cache" ], "x-ms-request-id": [ - "76c7e373-0ff1-4795-a83d-4afcd163667b" + "3451cc17-7cfb-4174-97d0-29e781a70ec3" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,16 +1644,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11976" ], "x-ms-correlation-request-id": [ - "458b4891-3a5f-4bf7-a968-172555b169f4" + "bd082954-a64b-417f-be9d-b1ffe33a42b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020130Z:458b4891-3a5f-4bf7-a968-172555b169f4" + "WESTUS:20210217T062025Z:bd082954-a64b-417f-be9d-b1ffe33a42b4" ], "Date": [ - "Thu, 26 Nov 2020 02:01:30 GMT" + "Wed, 17 Feb 2021 06:20:24 GMT" ], "Content-Length": [ "320" @@ -1725,20 +1665,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1749,10 +1689,10 @@ "no-cache" ], "x-ms-request-id": [ - "10ef89a1-c1ae-453c-960d-544e06092fdd" + "fe844d77-cf6b-4345-9fdf-0eebca0d3c45" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,16 +1704,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11975" ], "x-ms-correlation-request-id": [ - "274d52ad-b259-4826-97df-aa822b7bcab7" + "08f77e3b-609e-45e6-9a5c-a3b7dcf7747a" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020200Z:274d52ad-b259-4826-97df-aa822b7bcab7" + "WESTUS:20210217T062055Z:08f77e3b-609e-45e6-9a5c-a3b7dcf7747a" ], "Date": [ - "Thu, 26 Nov 2020 02:02:00 GMT" + "Wed, 17 Feb 2021 06:20:55 GMT" ], "Content-Length": [ "320" @@ -1785,20 +1725,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1809,10 +1749,10 @@ "no-cache" ], "x-ms-request-id": [ - "09376738-f506-4f8e-bf19-97d53bcab575" + "b75837a5-7b2a-4a23-9133-7aed4409c732" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,16 +1764,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11974" ], "x-ms-correlation-request-id": [ - "344ec397-533e-4dd1-8e7a-d18d45cf3995" + "f1a41c1c-bd5f-42a4-9a54-fd85444f51f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020231Z:344ec397-533e-4dd1-8e7a-d18d45cf3995" + "WESTUS:20210217T062125Z:f1a41c1c-bd5f-42a4-9a54-fd85444f51f1" ], "Date": [ - "Thu, 26 Nov 2020 02:02:30 GMT" + "Wed, 17 Feb 2021 06:21:25 GMT" ], "Content-Length": [ "320" @@ -1845,20 +1785,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1869,10 +1809,10 @@ "no-cache" ], "x-ms-request-id": [ - "bb7b84b8-f0ed-4934-bd2a-a10191d206d9" + "b9632d6b-80d3-4490-8682-fe12031f9419" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1884,76 +1824,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "dcf360e3-a8e4-4e6c-834d-b54832fde13b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201126T020301Z:dcf360e3-a8e4-4e6c-834d-b54832fde13b" - ], - "Date": [ - "Thu, 26 Nov 2020 02:03:00 GMT" - ], - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dd3e521a-04e2-4bf7-840d-e29b3acb87c2" - ], - "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "11973" ], "x-ms-correlation-request-id": [ - "802d502d-de83-4070-9084-9abeb8b91922" + "5f007590-693d-4c5b-967f-59f21132455f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020331Z:802d502d-de83-4070-9084-9abeb8b91922" + "WESTUS:20210217T062156Z:5f007590-693d-4c5b-967f-59f21132455f" ], "Date": [ - "Thu, 26 Nov 2020 02:03:30 GMT" + "Wed, 17 Feb 2021 06:21:55 GMT" ], "Content-Length": [ "320" @@ -1965,20 +1845,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -1989,10 +1869,10 @@ "no-cache" ], "x-ms-request-id": [ - "2fa9cb78-b5cf-4c2d-b3e1-4d0d636b5ace" + "7d88830a-b838-4441-bb06-8cc1335e11c7" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,16 +1884,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11972" ], "x-ms-correlation-request-id": [ - "1020ba71-3e52-436a-84f3-91f9fc51900e" + "bb405f41-5db8-4f95-836d-b13cab1292c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020401Z:1020ba71-3e52-436a-84f3-91f9fc51900e" + "WESTUS:20210217T062226Z:bb405f41-5db8-4f95-836d-b13cab1292c5" ], "Date": [ - "Thu, 26 Nov 2020 02:04:01 GMT" + "Wed, 17 Feb 2021 06:22:25 GMT" ], "Content-Length": [ "320" @@ -2025,20 +1905,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2049,10 +1929,10 @@ "no-cache" ], "x-ms-request-id": [ - "e20e1dfb-6787-4d16-8ce8-3d120e155470" + "ced0cf35-4be4-44ac-8e2c-79b0c40af604" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2060,20 +1940,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], "x-ms-correlation-request-id": [ - "ff0b7246-d265-4b7f-814e-6f662c31e234" + "eda51bcb-1522-44e0-9caa-6a187fd5729d" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020431Z:ff0b7246-d265-4b7f-814e-6f662c31e234" + "WESTUS:20210217T062256Z:eda51bcb-1522-44e0-9caa-6a187fd5729d" ], "Date": [ - "Thu, 26 Nov 2020 02:04:31 GMT" + "Wed, 17 Feb 2021 06:22:55 GMT" ], "Content-Length": [ "320" @@ -2085,20 +1965,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2109,10 +1989,10 @@ "no-cache" ], "x-ms-request-id": [ - "b45cd4ec-e2d5-458f-874e-fdd4044265cf" + "33540f5c-c9fb-42c8-a512-58943b960601" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2124,16 +2004,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11970" ], "x-ms-correlation-request-id": [ - "f6aae3c5-d095-4854-bfc4-e0fc6bb00467" + "071f5e40-3ee8-4c0a-9128-b2e29e7c0dfc" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020501Z:f6aae3c5-d095-4854-bfc4-e0fc6bb00467" + "WESTUS:20210217T062326Z:071f5e40-3ee8-4c0a-9128-b2e29e7c0dfc" ], "Date": [ - "Thu, 26 Nov 2020 02:05:01 GMT" + "Wed, 17 Feb 2021 06:23:26 GMT" ], "Content-Length": [ "320" @@ -2145,20 +2025,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2169,10 +2049,10 @@ "no-cache" ], "x-ms-request-id": [ - "692aadf7-0be7-4157-b36a-6c00e0254634" + "db29cfa1-bc2f-4690-9b55-8cc185c550ff" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2184,16 +2064,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11969" ], "x-ms-correlation-request-id": [ - "bc4fc67f-6c6d-4cb6-8fc7-553cdb68cca7" + "f73c4dd4-1833-4d07-9406-a63dae753f50" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020532Z:bc4fc67f-6c6d-4cb6-8fc7-553cdb68cca7" + "WESTUS:20210217T062356Z:f73c4dd4-1833-4d07-9406-a63dae753f50" ], "Date": [ - "Thu, 26 Nov 2020 02:05:31 GMT" + "Wed, 17 Feb 2021 06:23:56 GMT" ], "Content-Length": [ "320" @@ -2205,20 +2085,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2229,10 +2109,10 @@ "no-cache" ], "x-ms-request-id": [ - "d15b2828-3d3a-4dca-b4c8-8b960220ecf6" + "2eaadc7b-f041-4416-8659-7e138f4675e0" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2244,16 +2124,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11968" ], "x-ms-correlation-request-id": [ - "3e3708f7-9d4b-45f4-89d4-7c499d8fbc57" + "ea4fd470-5ce7-46dd-aca7-69e5afb515e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020602Z:3e3708f7-9d4b-45f4-89d4-7c499d8fbc57" + "WESTUS:20210217T062427Z:ea4fd470-5ce7-46dd-aca7-69e5afb515e1" ], "Date": [ - "Thu, 26 Nov 2020 02:06:01 GMT" + "Wed, 17 Feb 2021 06:24:26 GMT" ], "Content-Length": [ "320" @@ -2265,20 +2145,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2289,10 +2169,10 @@ "no-cache" ], "x-ms-request-id": [ - "8de5fd41-d366-4dae-a21a-60d2ad71b308" + "15347778-add8-4951-8bdb-e03f0fd02401" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2304,16 +2184,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11967" ], "x-ms-correlation-request-id": [ - "78391d4f-a303-4a3f-b9cf-04d8d7b92b37" + "61ee05fa-9607-41e3-b463-af8cc949c1bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020632Z:78391d4f-a303-4a3f-b9cf-04d8d7b92b37" + "WESTUS:20210217T062457Z:61ee05fa-9607-41e3-b463-af8cc949c1bb" ], "Date": [ - "Thu, 26 Nov 2020 02:06:31 GMT" + "Wed, 17 Feb 2021 06:24:56 GMT" ], "Content-Length": [ "320" @@ -2325,20 +2205,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2349,10 +2229,10 @@ "no-cache" ], "x-ms-request-id": [ - "6cc4d614-a36a-47b8-aace-1262fb548410" + "4275c17a-88e2-4968-9471-43b89f82ef0e" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2364,16 +2244,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11966" ], "x-ms-correlation-request-id": [ - "87552090-f82f-49cb-bffe-b78ddfc0694f" + "aed9c8ea-03cc-4d21-9c0e-62eee1f0f262" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020702Z:87552090-f82f-49cb-bffe-b78ddfc0694f" + "WESTUS:20210217T062527Z:aed9c8ea-03cc-4d21-9c0e-62eee1f0f262" ], "Date": [ - "Thu, 26 Nov 2020 02:07:01 GMT" + "Wed, 17 Feb 2021 06:25:26 GMT" ], "Content-Length": [ "320" @@ -2385,20 +2265,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2409,10 +2289,10 @@ "no-cache" ], "x-ms-request-id": [ - "d5917ea6-5014-49c7-919a-2d46d44a7eb4" + "2152b218-6b97-483d-95fb-398b1f081af4" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2424,16 +2304,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11965" ], "x-ms-correlation-request-id": [ - "bb50f85e-0e20-4438-8fca-662581c9b2be" + "e0afa96a-a185-419f-9f81-07c6e1e60e5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020732Z:bb50f85e-0e20-4438-8fca-662581c9b2be" + "WESTUS:20210217T062557Z:e0afa96a-a185-419f-9f81-07c6e1e60e5f" ], "Date": [ - "Thu, 26 Nov 2020 02:07:31 GMT" + "Wed, 17 Feb 2021 06:25:57 GMT" ], "Content-Length": [ "320" @@ -2445,20 +2325,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2469,10 +2349,10 @@ "no-cache" ], "x-ms-request-id": [ - "57a55b80-d55c-4667-b39a-3fa8b18d465f" + "fd442430-374f-4b98-8b5c-234650459e04" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,16 +2364,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11964" ], "x-ms-correlation-request-id": [ - "238974af-8f5a-4d10-a641-cbb9538c7ed6" + "d404d345-6e93-43c5-a15e-3c0b51525221" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020802Z:238974af-8f5a-4d10-a641-cbb9538c7ed6" + "WESTUS:20210217T062627Z:d404d345-6e93-43c5-a15e-3c0b51525221" ], "Date": [ - "Thu, 26 Nov 2020 02:08:02 GMT" + "Wed, 17 Feb 2021 06:26:27 GMT" ], "Content-Length": [ "320" @@ -2505,20 +2385,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2529,10 +2409,10 @@ "no-cache" ], "x-ms-request-id": [ - "482c90a5-0816-4769-8f42-cc9eb3cac911" + "8f70a624-4847-4447-b5de-881b4b2cb888" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,16 +2424,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11963" ], "x-ms-correlation-request-id": [ - "2d8d7cbf-1091-4e4d-8d14-093a1441e6d3" + "32bbca6d-3bc9-4a3b-aa17-8eb44cfae89f" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020832Z:2d8d7cbf-1091-4e4d-8d14-093a1441e6d3" + "WESTUS:20210217T062657Z:32bbca6d-3bc9-4a3b-aa17-8eb44cfae89f" ], "Date": [ - "Thu, 26 Nov 2020 02:08:32 GMT" + "Wed, 17 Feb 2021 06:26:56 GMT" ], "Content-Length": [ "320" @@ -2565,20 +2445,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:19:26.8990125-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2589,10 +2469,10 @@ "no-cache" ], "x-ms-request-id": [ - "64c5d5f7-14a1-47d3-b4d9-36f0631c60e2" + "84d3ae00-928d-4cc9-bc7a-4768eb19813d" ], "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "b23cd069-38d7-4d13-87a0-e3f31a877503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2604,19 +2484,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11962" ], "x-ms-correlation-request-id": [ - "b242349c-898e-431e-8032-e16b618f40d1" + "cff0bce4-7cf3-4e15-81f6-18224a0be088" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020902Z:b242349c-898e-431e-8032-e16b618f40d1" + "WESTUS:20210217T062727Z:cff0bce4-7cf3-4e15-81f6-18224a0be088" ], "Date": [ - "Thu, 26 Nov 2020 02:09:02 GMT" + "Wed, 17 Feb 2021 06:27:26 GMT" ], "Content-Length": [ - "320" + "319" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2625,20 +2505,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"name\": \"e3d83c7a-c94f-4125-a475-de59db996391\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-02-16T22:18:24.8761659-08:00\",\r\n \"endTime\": \"2021-02-16T22:27:11.6421281-08:00\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268/operationresults/e3d83c7a-c94f-4125-a475-de59db996391?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlNTI2OC9vcGVyYXRpb25yZXN1bHRzL2UzZDgzYzdhLWM5NGYtNDEyNS1hNDc1LWRlNTlkYjk5NjM5MT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" + "Microsoft.Azure.Management.RedisEnterprise.RedisEnterpriseManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -2648,71 +2528,17 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ce5a5a8f-da29-4065-895e-c513b8054b5f" - ], - "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-failure-cause": [ + "gateway" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "x-ms-request-id": [ + "570e9274-2947-4bf9-9d82-65b237acab92" ], "x-ms-correlation-request-id": [ - "ce215547-a5bc-4362-b858-5a2b8c5fee7c" + "570e9274-2947-4bf9-9d82-65b237acab92" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T020932Z:ce215547-a5bc-4362-b858-5a2b8c5fee7c" - ], - "Date": [ - "Thu, 26 Nov 2020 02:09:32 GMT" - ], - "Content-Length": [ - "320" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T17:59:32.1859658-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East%20US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvbG9jYXRpb25zL0Vhc3QlMjBVUy9vcGVyYXRpb25zU3RhdHVzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5f5d8939-82e6-43eb-8b04-8bbe57b26764" - ], - "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" + "WESTUS:20210217T062727Z:570e9274-2947-4bf9-9d82-65b237acab92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,87 +2546,21 @@ "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "c9ffabce-aca1-4117-b9de-10a74605dbbf" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201126T021003Z:c9ffabce-aca1-4117-b9de-10a74605dbbf" - ], "Date": [ - "Thu, 26 Nov 2020 02:10:02 GMT" - ], - "Content-Length": [ - "319" + "Wed, 17 Feb 2021 06:27:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/locations/East US/operationsStatus/a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"name\": \"a984fa0b-288d-4520-aa52-ddaca1ff1fb1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-11-25T17:59:30.2085436-08:00\",\r\n \"endTime\": \"2020-11-25T18:09:57.0536479-08:00\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275/providers/Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate9588/operationresults/a984fa0b-288d-4520-aa52-ddaca1ff1fb1?api-version=2020-10-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlR3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpc0VudGVycHJpc2UvUmVkaXNFbnRlcnByaXNlQ3JlYXRlVXBkYXRlOTU4OC9vcGVyYXRpb25yZXN1bHRzL2E5ODRmYTBiLTI4OGQtNDUyMC1hYTUyLWRkYWNhMWZmMWZiMT9hcGktdmVyc2lvbj0yMDIwLTEwLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29130.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.RedisEnterprise.redisenterpriseClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "04abfccc-1793-4120-a214-6aa62974dbbe" - ], - "x-rp-server-mvid": [ - "f86edc6b-6a96-45c8-9297-8d7daae8142d" - ], - "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": [ - "79408b21-6fe9-452a-b87c-241caa92b154" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20201126T021003Z:79408b21-6fe9-452a-b87c-241caa92b154" - ], - "Date": [ - "Thu, 26 Nov 2020 02:10:02 GMT" - ], - "Expires": [ - "-1" + "Content-Length": [ + "266" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cache/redisEnterprise/RedisEnterpriseCreateUpdate5268' under resource group 'RedisEnterpriseCreateUpdate8385' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 } ], "Names": {}, diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json index f0fe1394d7b2..19f35a184edc 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/SessionRecords/TestsFixture/.ctor.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache/register?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d90708a2-f65e-4473-81d7-6f8d14cf14f0" + "c851f343-f09f-49af-8e5e-f372b475b799" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "1199" ], "x-ms-request-id": [ - "665adcc0-b853-4a7b-9915-c434f5454661" + "855e26a9-134b-4d2c-9f70-1917dd5fd723" ], "x-ms-correlation-request-id": [ - "665adcc0-b853-4a7b-9915-c434f5454661" + "855e26a9-134b-4d2c-9f70-1917dd5fd723" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014952Z:665adcc0-b853-4a7b-9915-c434f5454661" + "WESTUS:20210217T060916Z:855e26a9-134b-4d2c-9f70-1917dd5fd723" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,10 +45,10 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:49:51 GMT" + "Wed, 17 Feb 2021 06:09:16 GMT" ], "Content-Length": [ - "11273" + "12296" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,26 +57,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\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\": \"Canada 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\": \"Brazil South\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\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-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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/providers/Microsoft.Cache?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ff0d2f1-c7db-4d48-b633-2b781b2b44c7" + "499c0643-418d-45d1-b171-2f665406048d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ] }, "ResponseHeaders": { @@ -90,13 +90,13 @@ "11999" ], "x-ms-request-id": [ - "535148b7-5770-4a56-bd89-85e611b6898e" + "1fad2fbc-8d72-432d-b749-f11aa78a8731" ], "x-ms-correlation-request-id": [ - "535148b7-5770-4a56-bd89-85e611b6898e" + "1fad2fbc-8d72-432d-b749-f11aa78a8731" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014952Z:535148b7-5770-4a56-bd89-85e611b6898e" + "WESTUS:20210217T060916Z:1fad2fbc-8d72-432d-b749-f11aa78a8731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:49:51 GMT" + "Wed, 17 Feb 2021 06:09:16 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,29 +114,29 @@ "-1" ], "Content-Length": [ - "11273" + "12296" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\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\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 }\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\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/e311648e-a318-4a16-836e-f4a91cc73e9b/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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"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\": \"East US 2\",\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\": \"West Europe\",\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\": \"Central US EUAP\",\r\n \"zones\": []\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\": \"Southeast Asia\",\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\": \"North Europe\",\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\": \"UK South\",\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\": \"Australia 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 },\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\": \"Canada 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\": \"Brazil South\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\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-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 \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\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 \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\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\": \"East US 2\",\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\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\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\": \"West 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\": \"East US\",\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\": \"Australia East\",\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\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 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"defaultApiVersion\": \"2021-03-01\",\r\n \"capabilities\": \"None\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\",\r\n \"registrationPolicy\": \"RegistrationRequired\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate1275?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate8385?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a629fa44-3ec5-4b63-b338-8a5c7671ede5" + "0b413ca7-5630-4331-a7d8-5bc46a212181" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "0a7c422c-48f2-4567-83c1-80f666efdea8" + "6146d581-9507-449e-a536-90d35d0094ac" ], "x-ms-correlation-request-id": [ - "0a7c422c-48f2-4567-83c1-80f666efdea8" + "6146d581-9507-449e-a536-90d35d0094ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014953Z:0a7c422c-48f2-4567-83c1-80f666efdea8" + "WESTUS:20210217T060917Z:6146d581-9507-449e-a536-90d35d0094ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,10 +171,10 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:49:53 GMT" + "Wed, 17 Feb 2021 06:09:17 GMT" ], "Content-Length": [ - "215" + "259" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,26 +183,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275\",\r\n \"name\": \"RedisEnterpriseCreateUpdate1275\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8385\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate1275?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTEyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourcegroups/RedisEnterpriseCreateUpdate8385?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTMxMTY0OGUtYTMxOC00YTE2LTgzNmUtZjRhOTFjYzczZTliL3Jlc291cmNlZ3JvdXBzL1JlZGlzRW50ZXJwcmlzZUNyZWF0ZVVwZGF0ZTgzODU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30d0863-ead4-4a89-b993-1d5e4a280d71" + "399628f9-4083-40a6-aa9a-4aaf06f05d13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29130.01", + "FxVersion/4.6.29719.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.1.0" ] }, "ResponseHeaders": { @@ -216,13 +216,13 @@ "11998" ], "x-ms-request-id": [ - "eb999e0e-7c39-41c8-add1-9e7c37891cc1" + "3c740a22-acf3-461c-89eb-96fc709c1d98" ], "x-ms-correlation-request-id": [ - "eb999e0e-7c39-41c8-add1-9e7c37891cc1" + "3c740a22-acf3-461c-89eb-96fc709c1d98" ], "x-ms-routing-request-id": [ - "WESTUS2:20201126T014953Z:eb999e0e-7c39-41c8-add1-9e7c37891cc1" + "WESTUS:20210217T060917Z:3c740a22-acf3-461c-89eb-96fc709c1d98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Thu, 26 Nov 2020 01:49:53 GMT" + "Wed, 17 Feb 2021 06:09:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,17 +240,17 @@ "-1" ], "Content-Length": [ - "215" + "259" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate1275\",\r\n \"name\": \"RedisEnterpriseCreateUpdate1275\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e311648e-a318-4a16-836e-f4a91cc73e9b/resourceGroups/RedisEnterpriseCreateUpdate8385\",\r\n \"name\": \"RedisEnterpriseCreateUpdate8385\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": { ".ctor": [ - "RedisEnterpriseCreateUpdate1275", - "RedisEnterpriseCreateUpdate9588" + "RedisEnterpriseCreateUpdate8385", + "RedisEnterpriseCreateUpdate5268" ] }, "Variables": { diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs deleted file mode 100644 index 871d38646464..000000000000 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/tests/Utility.cs +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -using Microsoft.Azure; -using Microsoft.Azure.Management.RedisEnterprise; -using Microsoft.Rest; -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Text; -using System.Threading.Tasks; - -namespace AzureRedisEnterpriseCache.Tests -{ - public static class Utility - { - public static redisenterpriseClient GetRedisEnterpriseClient(string responseString, string requestIdHeader, HttpStatusCode statusCode) - { - var httpResponse = new HttpResponseMessage(); - httpResponse.Content = new StreamContent(GenerateStreamFromString(responseString)); - if (!String.IsNullOrEmpty(requestIdHeader)) - { - httpResponse.Headers.Add("x-ms-request-id", requestIdHeader); - } - httpResponse.StatusCode = statusCode; - - var token = new TokenCredentials(Guid.NewGuid().ToString(), "abc123"); - redisenterpriseClient client = new redisenterpriseClient(token, new DummyResponseDelegatingHandler(httpResponse)); - client.SubscriptionId = "e311648e-a318-4a16-836e-f4a91cc73e9b"; - client.LongRunningOperationRetryTimeout = 0; - return client; - } - - private static Stream GenerateStreamFromString(string source) - { - MemoryStream stream = new MemoryStream(); - StreamWriter writer = new StreamWriter(stream); - writer.Write(source); - writer.Flush(); - stream.Position = 0; - return stream; - } - } -} From b844a6c61233241eb02551dd6baf15bdf9876ee9 Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Wed, 17 Feb 2021 10:28:24 -0800 Subject: [PATCH 6/8] Include code generation metadata section --- .../mgmtmetadata/redisenterprise_resource-manager.txt | 2 +- .../SdkInfo_RedisEnterpriseManagementClient.cs | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt index 2f9d33cf60d2..1e384dfd2c38 100644 --- a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt @@ -3,7 +3,7 @@ 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/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\git\azure-sdk-for-net\sdk +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\azure-sdk-for-net\sdk 2021-02-17 05:54:08 UTC Azure-rest-api-specs repository information GitHub fork: Azure diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs index c62445162490..7b90117eada6 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs @@ -28,5 +28,16 @@ public static IEnumerable> ApiInfo_RedisEnterprise }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "v2"; + 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/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "202d83c0febf4c8ed7229f6f1c6edfcfe635c36c"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + From 74929dd3e67ab406813054ee8540c3746d70416f Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Wed, 17 Feb 2021 17:35:34 -0800 Subject: [PATCH 7/8] Try code generation again to suppress discrepancy failure --- eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt | 6 +++--- .../Generated/SdkInfo_RedisEnterpriseManagementClient.cs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt index 1e384dfd2c38..b3c6ca44d70a 100644 --- a/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/redisenterprise_resource-manager.txt @@ -3,12 +3,12 @@ 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/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\azure-sdk-for-net\sdk -2021-02-17 05:54:08 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\repos\feb21\azure-sdk-for-net\sdk +2021-02-18 01:33:34 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 202d83c0febf4c8ed7229f6f1c6edfcfe635c36c +Commit: 379ee7309b62268464be1e14b0f9022a9283c2a4 AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs index 7b90117eada6..72a4529ff61f 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/src/Generated/SdkInfo_RedisEnterpriseManagementClient.cs @@ -31,10 +31,10 @@ public static IEnumerable> ApiInfo_RedisEnterprise // BEGIN: Code Generation Metadata Section public static readonly String AutoRestVersion = "v2"; 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/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/redisenterprise/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\repos\\feb21\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "202d83c0febf4c8ed7229f6f1c6edfcfe635c36c"; + public static readonly String GithubCommidId = "379ee7309b62268464be1e14b0f9022a9283c2a4"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section From aeb83620470f44c38f8cd38cc8f552cfb49d97f6 Mon Sep 17 00:00:00 2001 From: Andrew Green Date: Thu, 18 Feb 2021 11:18:36 -0800 Subject: [PATCH 8/8] Add newline at end of file --- .../AzSdk.RP.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props index bfba4dcf316b..96d3590b2cbc 100644 --- a/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props +++ b/sdk/redisenterprise/Microsoft.Azure.Management.RedisEnterpriseCache/AzSdk.RP.props @@ -4,4 +4,4 @@ RedisEnterprise_2021-03-01; $(PackageTags);$(CommonTags);$(AzureApiTag); - \ No newline at end of file +