From 44724119a25d72544c9582ecd5392b6a0c8cded1 Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Fri, 8 Dec 2017 15:07:57 -0800 Subject: [PATCH 1/5] Updating .net sdk from latest api version --- .../Generated/FirewallRulesOperations.cs | 1053 ++++ .../FirewallRulesOperationsExtensions.cs | 240 + .../Generated/IFirewallRulesOperations.cs | 159 + .../Generated/ILinkedServerOperations.cs | 196 + .../Management.Redis/Generated/IOperations.cs | 70 + .../Generated/IPatchSchedulesOperations.cs | 29 +- .../Generated/IRedisManagementClient.cs | 36 +- .../Generated/IRedisOperations.cs | 183 +- .../Generated/LinkedServerOperations.cs | 1084 ++++ .../LinkedServerOperationsExtensions.cs | 298 + .../Generated/Models/DayOfWeek.cs | 89 +- .../Generated/Models/ExportRDBParameters.cs | 33 +- .../Generated/Models/ImportRDBParameters.cs | 39 +- .../Generated/Models/Operation.cs | 61 + .../Generated/Models/OperationDisplay.cs | 79 + .../Management.Redis/Generated/Models/Page.cs | 29 +- .../Generated/Models/ProxyResource.cs | 47 + .../Generated/Models/RebootType.cs | 6 +- .../Generated/Models/RedisAccessKeys.cs | 32 +- .../Generated/Models/RedisCreateParameters.cs | 143 +- .../Generated/Models/RedisFirewallRule.cs | 86 + .../RedisFirewallRuleCreateParameters.cs | 83 + .../Models/RedisForceRebootResponse.cs | 51 + .../Generated/Models/RedisKeyType.cs | 47 +- .../Generated/Models/RedisLinkedServer.cs | 51 + .../RedisLinkedServerCreateParameters.cs | 93 + .../Models/RedisLinkedServerWithProperties.cs | 107 + .../Generated/Models/RedisPatchSchedule.cs | 76 +- .../Generated/Models/RedisRebootParameters.cs | 45 +- .../Models/RedisRegenerateKeyParameters.cs | 28 +- .../Generated/Models/RedisResource.cs | 220 +- .../Generated/Models/RedisUpdateParameters.cs | 107 +- .../Generated/Models/ReplicationRole.cs | 60 + .../Generated/Models/Resource.cs | 71 +- .../Generated/Models/ScheduleEntry.cs | 34 +- .../Management.Redis/Generated/Models/Sku.cs | 61 +- .../Generated/Models/SkuFamily.cs | 6 +- .../Generated/Models/SkuName.cs | 6 +- .../Generated/Models/TrackedResource.cs | 80 + .../Management.Redis/Generated/Operations.cs | 402 ++ .../Generated/OperationsExtensions.cs | 91 + .../Generated/PatchSchedulesOperations.cs | 335 +- .../PatchSchedulesOperationsExtensions.cs | 48 +- .../Generated/RedisManagementClient.cs | 134 +- .../Generated/RedisOperations.cs | 1603 ++--- .../Generated/RedisOperationsExtensions.cs | 395 +- .../Properties/AssemblyInfo.cs | 14 +- .../Properties/AssemblyInfo.cs | 14 +- .../RedisCache.Tests/RedisCache.Tests.csproj | 3 + .../BeginCreateFunctionalTests.cs | 11 +- .../CreateUpdateDeleteFunctionalTests.cs | 10 +- .../ScenarioTests/FirewallFunctionalTests.cs | 91 + .../GeoReplicationFunctionalTests.cs | 145 + .../GetListKeysFunctionalTests.cs | 14 +- .../PatchSchedulesFunctionalTests.cs | 16 +- .../ScenarioTests/RebootFunctionalTests.cs | 11 +- .../RedisCacheManagementHelper.cs | 19 +- .../RedisCacheManagementTestUtilities.cs | 7 +- .../ScenarioTests/TestsFixture.cs | 20 +- .../TestsFixtureWithCacheCreate.cs | 27 +- .../BeginCreateFunctionalTest.json | 844 ++- .../CreateUpdateDeleteTest.json | 971 +-- .../FirewallFunctionalTest.json | 2138 +++++++ .../GeoReplicationFunctionalTest.json | 5358 +++++++++++++++++ .../GetTest.json | 29 +- .../ListKeysTest.json | 27 +- .../ListTest.json | 29 +- .../ListWithoutResourceGroupTest.json | 45 +- .../RegenerateKeyTest.json | 52 +- .../PatchSchedules_PutGetDelete.json | 754 +-- .../RebootBothNodesTest.json | 993 ++- .../.ctor.json | 103 +- .../.ctor.json | 1014 ++-- 73 files changed, 17334 insertions(+), 3651 deletions(-) create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperations.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperationsExtensions.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/IFirewallRulesOperations.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/ILinkedServerOperations.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/IOperations.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperations.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperationsExtensions.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/Operation.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/OperationDisplay.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/ProxyResource.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRule.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRuleCreateParameters.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisForceRebootResponse.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServer.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerCreateParameters.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerWithProperties.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/ReplicationRole.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Models/TrackedResource.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/Operations.cs create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/OperationsExtensions.cs create mode 100644 src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/FirewallFunctionalTests.cs create mode 100644 src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GeoReplicationFunctionalTests.cs create mode 100644 src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.FirewallFunctionalTests/FirewallFunctionalTest.json create mode 100644 src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperations.cs new file mode 100644 index 000000000000..c50235bcdb20 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperations.cs @@ -0,0 +1,1053 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// FirewallRulesOperations operations. + /// + internal partial class FirewallRulesOperations : IServiceOperations, IFirewallRulesOperations + { + /// + /// Initializes a new instance of the FirewallRulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal FirewallRulesOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// 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>> ListByRedisResourceWithHttpMessagesAsync(string resourceGroupName, string cacheName, 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 (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByRedisResource", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{cacheName}/firewallRules").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Parameters supplied to the create or update redis firewall rule 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, RedisFirewallRuleCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (ruleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + 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("cacheName", cacheName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{cacheName}/firewallRules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (ruleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); + } + 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("cacheName", cacheName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{cacheName}/firewallRules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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 firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// 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 cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (ruleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); + } + 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("cacheName", cacheName); + tracingParameters.Add("ruleName", ruleName); + 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/Redis/{cacheName}/firewallRules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _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 != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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 firewall rules in the specified redis cache. + /// + /// + /// 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>> ListByRedisResourceNextWithHttpMessagesAsync(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, "ListByRedisResourceNext", 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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/src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperationsExtensions.cs b/src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperationsExtensions.cs new file mode 100644 index 000000000000..fd0175854f7a --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/FirewallRulesOperationsExtensions.cs @@ -0,0 +1,240 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for FirewallRulesOperations. + /// + public static partial class FirewallRulesOperationsExtensions + { + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static IPage ListByRedisResource(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName) + { + return operations.ListByRedisResourceAsync(resourceGroupName, cacheName).GetAwaiter().GetResult(); + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByRedisResourceAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByRedisResourceWithHttpMessagesAsync(resourceGroupName, cacheName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Parameters supplied to the create or update redis firewall rule operation. + /// + public static RedisFirewallRule CreateOrUpdate(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, RedisFirewallRuleCreateParameters parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, cacheName, ruleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Parameters supplied to the create or update redis firewall rule operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, RedisFirewallRuleCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cacheName, ruleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + public static RedisFirewallRule Get(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName) + { + return operations.GetAsync(resourceGroupName, cacheName, ruleName).GetAwaiter().GetResult(); + } + + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cacheName, ruleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + public static void Delete(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName) + { + operations.DeleteAsync(resourceGroupName, cacheName, ruleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cacheName, ruleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByRedisResourceNext(this IFirewallRulesOperations operations, string nextPageLink) + { + return operations.ListByRedisResourceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByRedisResourceNextAsync(this IFirewallRulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByRedisResourceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/IFirewallRulesOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/IFirewallRulesOperations.cs new file mode 100644 index 000000000000..b2efbb99dc16 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/IFirewallRulesOperations.cs @@ -0,0 +1,159 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// FirewallRulesOperations operations. + /// + public partial interface IFirewallRulesOperations + { + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByRedisResourceWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Parameters supplied to the create or update redis firewall rule + /// 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, RedisFirewallRuleCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// 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 cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// 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>> ListByRedisResourceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/ILinkedServerOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/ILinkedServerOperations.cs new file mode 100644 index 000000000000..b690ef73e3e2 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/ILinkedServerOperations.cs @@ -0,0 +1,196 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LinkedServerOperations operations. + /// + public partial interface ILinkedServerOperations + { + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// Parameters supplied to the Create Linked server 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 name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the linked server from a redis cache (requires Premium + /// SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the detailed information about a linked server of a redis + /// cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of linked servers associated with this redis cache + /// (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// Parameters supplied to the Create Linked server 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 name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of linked servers associated with this redis cache + /// (requires Premium SKU). + /// + /// + /// 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/src/SDKs/RedisCache/Management.Redis/Generated/IOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/IOperations.cs new file mode 100644 index 000000000000..44102a2ccc66 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/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.Redis +{ + 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/src/SDKs/RedisCache/Management.Redis/Generated/IPatchSchedulesOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/IPatchSchedulesOperations.cs index 0dcfc808c0a3..064d488ad759 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/IPatchSchedulesOperations.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/IPatchSchedulesOperations.cs @@ -1,15 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// PatchSchedulesOperations operations. @@ -17,16 +24,17 @@ namespace Microsoft.Azure.Management.Redis public partial interface IPatchSchedulesOperations { /// - /// Create or replace the patching schedule for redis cache. + /// Create or replace the patching schedule for Redis cache (requires + /// Premium SKU). /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters to set patch schedules for redis cache. + /// Parameters to set the patching schedule for Redis cache. /// /// /// The headers that will be added to request. @@ -43,9 +51,10 @@ public partial interface IPatchSchedulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisPatchSchedule parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisPatchSchedule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the patching schedule for redis cache. + /// Deletes the patching schedule of a redis cache (requires Premium + /// SKU). /// /// /// The name of the resource group. @@ -65,9 +74,9 @@ public partial interface IPatchSchedulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the patching schedule for redis cache. + /// Gets the patching schedule of a redis cache (requires Premium SKU). /// /// /// The name of the resource group. @@ -90,6 +99,6 @@ public partial interface IPatchSchedulesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/IRedisManagementClient.cs b/src/SDKs/RedisCache/Management.Redis/Generated/IRedisManagementClient.cs index 4966ee9cf7e6..022132b087a8 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/IRedisManagementClient.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/IRedisManagementClient.cs @@ -1,19 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using Newtonsoft.Json; /// - /// REST API for Azure Redis Cache Service + /// REST API for Azure Redis Cache Service. /// public partial interface IRedisManagementClient : System.IDisposable { @@ -25,20 +28,20 @@ public partial interface IRedisManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// - /// Gets subscription credentials which uniquely identify Microsoft + /// Gets subscription credentials which uniquely identify the Microsoft /// Azure subscription. The subscription ID forms part of the URI for /// every service call. /// @@ -61,21 +64,36 @@ public partial interface IRedisManagementClient : System.IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// 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 IRedisOperations. /// IRedisOperations Redis { get; } + /// + /// Gets the IFirewallRulesOperations. + /// + IFirewallRulesOperations FirewallRules { get; } + /// /// Gets the IPatchSchedulesOperations. /// IPatchSchedulesOperations PatchSchedules { get; } + /// + /// Gets the ILinkedServerOperations. + /// + ILinkedServerOperations LinkedServer { get; } + } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/IRedisOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/IRedisOperations.cs index b3ba8884285d..60aa8ae62747 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/IRedisOperations.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/IRedisOperations.cs @@ -1,15 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// RedisOperations operations. @@ -18,16 +25,16 @@ public partial interface IRedisOperations { /// /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// existing Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Create Redis operation. /// /// /// The headers that will be added to request. @@ -44,19 +51,18 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Update an existing Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Update Redis operation. /// /// /// The headers that will be added to request. @@ -73,18 +79,15 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update an existing Redis cache + /// Deletes a Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters supplied to the Update redis operation. + /// The name of the Redis cache. /// /// /// The headers that will be added to request. @@ -95,24 +98,18 @@ public partial interface IRedisOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Update an existing Redis cache + /// Gets a Redis cache (resource description). /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters supplied to the Update redis operation. + /// The name of the Redis cache. /// /// /// The headers that will be added to request. @@ -129,16 +126,13 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Lists all Redis caches in a resource group. /// /// /// The name of the resource group. /// - /// - /// The name of the redis cache. - /// /// /// The headers that will be added to request. /// @@ -148,19 +142,16 @@ public partial interface IRedisOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Gets all Redis caches in the specified subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// /// /// The headers that will be added to request. /// @@ -170,18 +161,22 @@ public partial interface IRedisOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a redis cache (resource description). + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// /// The headers that will be added to request. @@ -198,32 +193,20 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all redis caches in a resource group. + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The name of the resource group. /// - /// - /// The headers that will be added to request. + /// + /// The name of the Redis cache. /// - /// - /// The cancellation token. + /// + /// Specifies which key to regenerate. /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); - /// - /// Gets all redis caches in the specified subscription. - /// /// /// The headers that will be added to request. /// @@ -239,16 +222,19 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieve a redis cache's access keys. This operation requires - /// write permission to the cache resource. + /// Reboot specified Redis node(s). This operation requires write + /// permission to the cache resource. There can be potential data loss. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. /// /// /// The headers that will be added to request. @@ -265,19 +251,18 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Regenerate redis cache's access keys. This operation requires - /// write permission to the cache resource. + /// Import data into Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which key to reset. + /// Parameters for Redis import operation. /// /// /// The headers that will be added to request. @@ -288,26 +273,21 @@ public partial interface IRedisOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Reboot specified redis node(s). This operation requires write - /// permission to the cache resource. There can be potential data - /// loss. + /// Export data from the redis cache to blobs in a container. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which redis node(s) to reboot. + /// Parameters for Redis export operation. /// /// /// The headers that will be added to request. @@ -321,18 +301,19 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Import data into redis cache. + /// Create or replace (overwrite/recreate, with potential downtime) an + /// existing Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis import operation. + /// Parameters supplied to the Create Redis operation. /// /// /// The headers that will be added to request. @@ -343,21 +324,21 @@ public partial interface IRedisOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Import data into redis cache. + /// Deletes a Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters for redis import operation. + /// The name of the Redis cache. /// /// /// The headers that will be added to request. @@ -371,18 +352,18 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Import data into redis cache. + /// Import data into Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. + /// Parameters for Redis import operation. /// /// /// The headers that will be added to request. @@ -396,18 +377,18 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Import data into redis cache. + /// Export data from the redis cache to blobs in a container. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. + /// Parameters for Redis export operation. /// /// /// The headers that will be added to request. @@ -421,9 +402,9 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task BeginExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all redis caches in a resource group. + /// Lists all Redis caches in a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -443,9 +424,9 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all redis caches in the specified subscription. + /// Gets all Redis caches in the specified subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -465,6 +446,6 @@ public partial interface IRedisOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperations.cs new file mode 100644 index 000000000000..2e20573aa5be --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperations.cs @@ -0,0 +1,1084 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LinkedServerOperations operations. + /// + internal partial class LinkedServerOperations : IServiceOperations, ILinkedServerOperations + { + /// + /// Initializes a new instance of the LinkedServerOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LinkedServerOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// 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 name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + 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("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + 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/Redis/{name}/linkedServers/{linkedServerName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _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) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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 the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + 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("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/linkedServers/{linkedServerName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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 list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// 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 name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + 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("name", name); + 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/Redis/{name}/linkedServers").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// 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 name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + 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("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + 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/Redis/{name}/linkedServers/{linkedServerName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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; + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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/src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperationsExtensions.cs b/src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperationsExtensions.cs new file mode 100644 index 000000000000..50b30f2645a1 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/LinkedServerOperationsExtensions.cs @@ -0,0 +1,298 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for LinkedServerOperations. + /// + public static partial class LinkedServerOperationsExtensions + { + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + public static RedisLinkedServerWithProperties Create(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters) + { + return operations.CreateAsync(resourceGroupName, name, linkedServerName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + public static void Delete(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName) + { + operations.DeleteAsync(resourceGroupName, name, linkedServerName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + public static RedisLinkedServerWithProperties Get(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName) + { + return operations.GetAsync(resourceGroupName, name, linkedServerName).GetAwaiter().GetResult(); + } + + /// + /// Gets the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + public static IPage List(this ILinkedServerOperations operations, string resourceGroupName, string name) + { + return operations.ListAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + public static RedisLinkedServerWithProperties BeginCreate(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters) + { + return operations.BeginCreateAsync(resourceGroupName, name, linkedServerName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILinkedServerOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// 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 ILinkedServerOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/DayOfWeek.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/DayOfWeek.cs index fc32c8a51443..4d80b3287c59 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/DayOfWeek.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/DayOfWeek.cs @@ -1,37 +1,102 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for DayOfWeek. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DayOfWeek { - [System.Runtime.Serialization.EnumMember(Value = "Monday")] + [EnumMember(Value = "Monday")] Monday, - [System.Runtime.Serialization.EnumMember(Value = "Tuesday")] + [EnumMember(Value = "Tuesday")] Tuesday, - [System.Runtime.Serialization.EnumMember(Value = "Wednesday")] + [EnumMember(Value = "Wednesday")] Wednesday, - [System.Runtime.Serialization.EnumMember(Value = "Thursday")] + [EnumMember(Value = "Thursday")] Thursday, - [System.Runtime.Serialization.EnumMember(Value = "Friday")] + [EnumMember(Value = "Friday")] Friday, - [System.Runtime.Serialization.EnumMember(Value = "Saturday")] + [EnumMember(Value = "Saturday")] Saturday, - [System.Runtime.Serialization.EnumMember(Value = "Sunday")] + [EnumMember(Value = "Sunday")] Sunday, - [System.Runtime.Serialization.EnumMember(Value = "Everyday")] + [EnumMember(Value = "Everyday")] Everyday, - [System.Runtime.Serialization.EnumMember(Value = "Weekend")] + [EnumMember(Value = "Weekend")] Weekend } + internal static class DayOfWeekEnumExtension + { + internal static string ToSerializedValue(this DayOfWeek? value) + { + return value == null ? null : ((DayOfWeek)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this DayOfWeek value) + { + switch( value ) + { + case DayOfWeek.Monday: + return "Monday"; + case DayOfWeek.Tuesday: + return "Tuesday"; + case DayOfWeek.Wednesday: + return "Wednesday"; + case DayOfWeek.Thursday: + return "Thursday"; + case DayOfWeek.Friday: + return "Friday"; + case DayOfWeek.Saturday: + return "Saturday"; + case DayOfWeek.Sunday: + return "Sunday"; + case DayOfWeek.Everyday: + return "Everyday"; + case DayOfWeek.Weekend: + return "Weekend"; + } + return null; + } + + internal static DayOfWeek? ParseDayOfWeek(this string value) + { + switch( value ) + { + case "Monday": + return DayOfWeek.Monday; + case "Tuesday": + return DayOfWeek.Tuesday; + case "Wednesday": + return DayOfWeek.Wednesday; + case "Thursday": + return DayOfWeek.Thursday; + case "Friday": + return DayOfWeek.Friday; + case "Saturday": + return DayOfWeek.Saturday; + case "Sunday": + return DayOfWeek.Sunday; + case "Everyday": + return DayOfWeek.Everyday; + case "Weekend": + return DayOfWeek.Weekend; + } + return null; + } + } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ExportRDBParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ExportRDBParameters.cs index e09c1f617a28..a2f214e8bd2b 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ExportRDBParameters.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ExportRDBParameters.cs @@ -1,24 +1,31 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// - /// Parameters for redis export operation. + /// Parameters for Redis export operation. /// public partial class ExportRDBParameters { /// /// Initializes a new instance of the ExportRDBParameters class. /// - public ExportRDBParameters() { } + public ExportRDBParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the ExportRDBParameters class. @@ -31,41 +38,47 @@ public ExportRDBParameters() { } Format = format; Prefix = prefix; Container = container; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets file format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "format")] + [JsonProperty(PropertyName = "format")] public string Format { get; set; } /// /// Gets or sets prefix to use for exported files. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "prefix")] + [JsonProperty(PropertyName = "prefix")] public string Prefix { get; set; } /// /// Gets or sets container name to export to. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "container")] + [JsonProperty(PropertyName = "container")] public string Container { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Prefix == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Prefix"); + throw new ValidationException(ValidationRules.CannotBeNull, "Prefix"); } if (Container == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Container"); + throw new ValidationException(ValidationRules.CannotBeNull, "Container"); } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ImportRDBParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ImportRDBParameters.cs index 57750ecc7bb1..baa1ca5d0453 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ImportRDBParameters.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ImportRDBParameters.cs @@ -1,59 +1,74 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Parameters for redis import operation. + /// Parameters for Redis import operation. /// public partial class ImportRDBParameters { /// /// Initializes a new instance of the ImportRDBParameters class. /// - public ImportRDBParameters() { } + public ImportRDBParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the ImportRDBParameters class. /// - /// files to import + /// files to import. /// File format. - public ImportRDBParameters(System.Collections.Generic.IList files, string format = default(string)) + public ImportRDBParameters(IList files, string format = default(string)) { Format = format; Files = files; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets file format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "format")] + [JsonProperty(PropertyName = "format")] public string Format { get; set; } /// - /// Gets or sets files to import + /// Gets or sets files to import. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "files")] - public System.Collections.Generic.IList Files { get; set; } + [JsonProperty(PropertyName = "files")] + public IList Files { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Files == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Files"); + throw new ValidationException(ValidationRules.CannotBeNull, "Files"); } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Operation.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Operation.cs new file mode 100644 index 000000000000..f3e52b61983f --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Operation.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// REST API operation + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Operation class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that describes the + /// operation. + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the object that describes the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/OperationDisplay.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..65f0a63eca95 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/OperationDisplay.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The object that describes the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// Friendly name of the resource + /// provider + /// Operation type: read, write, delete, + /// listKeys/action, etc. + /// Resource type on which the operation is + /// performed. + /// Friendly name of the operation + public OperationDisplay(string provider = default(string), string operation = default(string), string resource = default(string), string description = default(string)) + { + Provider = provider; + Operation = operation; + Resource = resource; + Description = description; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets friendly name of the resource provider + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets operation type: read, write, delete, listKeys/action, + /// etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets resource type on which the operation is performed. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets friendly name of the operation + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Page.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Page.cs index d519f5438d6a..d7a62bf052e0 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Page.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Page.cs @@ -1,44 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using 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 - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; 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 System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.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. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ProxyResource.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..f325f4a84600 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ProxyResource.cs @@ -0,0 +1,47 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using System.Linq; + + /// + /// The resource model definition for a ARM 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. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + 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/src/SDKs/RedisCache/Management.Redis/Generated/Models/RebootType.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RebootType.cs index ff44bdbda5db..97952aff2ad5 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RebootType.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RebootType.cs @@ -1,10 +1,12 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisAccessKeys.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisAccessKeys.cs index 07647336e88e..21039d0c6be0 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisAccessKeys.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisAccessKeys.cs @@ -1,13 +1,16 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -18,33 +21,42 @@ public partial class RedisAccessKeys /// /// Initializes a new instance of the RedisAccessKeys class. /// - public RedisAccessKeys() { } + public RedisAccessKeys() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisAccessKeys class. /// /// The current primary key that clients can - /// use to authenticate with redis cache. + /// use to authenticate with Redis cache. /// The current secondary key that clients - /// can use to authenticate with redis cache. + /// can use to authenticate with Redis cache. public RedisAccessKeys(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 - /// with redis cache. + /// with Redis cache. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "primaryKey")] + [JsonProperty(PropertyName = "primaryKey")] public string PrimaryKey { get; private set; } /// - /// Gets the current secondary key that clients can use to - /// authenticate with redis cache. + /// Gets the current secondary key that clients can use to authenticate + /// with Redis cache. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "secondaryKey")] + [JsonProperty(PropertyName = "secondaryKey")] public string SecondaryKey { get; private set; } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisCreateParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisCreateParameters.cs index ceebb4e6c289..6be5fd742622 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisCreateParameters.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisCreateParameters.cs @@ -1,140 +1,181 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Parameters supplied to the Create Redis operation. /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class RedisCreateParameters : Resource + [Rest.Serialization.JsonTransformation] + public partial class RedisCreateParameters { /// /// Initializes a new instance of the RedisCreateParameters class. /// - public RedisCreateParameters() { } + public RedisCreateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisCreateParameters class. /// - /// Resource location - /// What sku of redis cache to deploy. - /// Resource Id - /// Resource name - /// Resource type - /// Resource tags + /// The SKU of the Redis cache to deploy. + /// The geo-location where the resource + /// lives /// All Redis Settings. Few possible /// keys: /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value /// etc. - /// If the value is true, then the - /// non-ssl redis server port (6379) will be enabled. - /// tenantSettings + /// Specifies whether the non-ssl Redis + /// server port (6379) is enabled. + /// A dictionary of tenant + /// settings /// The number of shards to be created on a /// Premium Cluster Cache. /// The full resource ID of a subnet in a - /// virtual network to deploy the redis cache in. Example format: + /// virtual network to deploy the Redis cache in. Example format: /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 - /// Required when deploying a redis cache - /// inside an existing Azure Virtual Network. - public RedisCreateParameters(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary redisConfiguration = default(System.Collections.Generic.IDictionary), bool? enableNonSslPort = default(bool?), System.Collections.Generic.IDictionary tenantSettings = default(System.Collections.Generic.IDictionary), int? shardCount = default(int?), string subnetId = default(string), string staticIP = default(string)) - : base(location, id, name, type, tags) + /// Static IP address. Required when deploying a + /// Redis cache inside an existing Azure Virtual Network. + /// A list of availability zones denoting where the + /// resource needs to come from. + /// Resource tags. + public RedisCreateParameters(Sku sku, string location, IDictionary redisConfiguration = default(IDictionary), bool? enableNonSslPort = default(bool?), IDictionary tenantSettings = default(IDictionary), int? shardCount = default(int?), string subnetId = default(string), string staticIP = default(string), IList zones = default(IList), IDictionary tags = default(IDictionary)) { RedisConfiguration = redisConfiguration; EnableNonSslPort = enableNonSslPort; TenantSettings = tenantSettings; ShardCount = shardCount; + Sku = sku; SubnetId = subnetId; StaticIP = staticIP; - Sku = sku; + Zones = zones; + Location = location; + Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets all Redis Settings. Few possible keys: /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value /// etc. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.redisConfiguration")] - public System.Collections.Generic.IDictionary RedisConfiguration { get; set; } + [JsonProperty(PropertyName = "properties.redisConfiguration")] + public IDictionary RedisConfiguration { get; set; } /// - /// Gets or sets if the value is true, then the non-ssl redis server - /// port (6379) will be enabled. + /// Gets or sets specifies whether the non-ssl Redis server port (6379) + /// is enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enableNonSslPort")] + [JsonProperty(PropertyName = "properties.enableNonSslPort")] public bool? EnableNonSslPort { get; set; } /// - /// Gets or sets tenantSettings + /// Gets or sets a dictionary of tenant settings /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tenantSettings")] - public System.Collections.Generic.IDictionary TenantSettings { get; set; } + [JsonProperty(PropertyName = "properties.tenantSettings")] + public IDictionary TenantSettings { get; set; } /// /// Gets or sets the number of shards to be created on a Premium /// Cluster Cache. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.shardCount")] + [JsonProperty(PropertyName = "properties.shardCount")] public int? ShardCount { get; set; } + /// + /// Gets or sets the SKU of the Redis cache to deploy. + /// + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + /// /// Gets or sets the full resource ID of a subnet in a virtual network - /// to deploy the redis cache in. Example format: + /// to deploy the Redis cache in. Example format: /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.subnetId")] + [JsonProperty(PropertyName = "properties.subnetId")] public string SubnetId { get; set; } /// - /// Gets or sets required when deploying a redis cache inside an - /// existing Azure Virtual Network. + /// Gets or sets static IP address. Required when deploying a Redis + /// cache inside an existing Azure Virtual Network. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.staticIP")] + [JsonProperty(PropertyName = "properties.staticIP")] public string StaticIP { get; set; } /// - /// Gets or sets what sku of redis cache to deploy. + /// Gets or sets a list of availability zones denoting where the + /// resource needs to come from. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sku")] - public Sku Sku { get; set; } + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// - public override void Validate() + public virtual void Validate() { - base.Validate(); if (Sku == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Sku"); + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (this.SubnetId != null) + if (Location == null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(this.SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); - } + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + if (Sku != null) + { + Sku.Validate(); } - if (this.StaticIP != null) + if (SubnetId != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(this.StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) + if (!System.Text.RegularExpressions.Regex.IsMatch(SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); + throw new ValidationException(ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); } } - if (this.Sku != null) + if (StaticIP != null) { - this.Sku.Validate(); + if (!System.Text.RegularExpressions.Regex.IsMatch(StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) + { + throw new ValidationException(ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); + } } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRule.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRule.cs new file mode 100644 index 000000000000..ade2d4f42d44 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRule.cs @@ -0,0 +1,86 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A firewall rule on a redis cache has a name, and describes a contiguous + /// range of IP addresses permitted to connect + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisFirewallRule : ProxyResource + { + /// + /// Initializes a new instance of the RedisFirewallRule class. + /// + public RedisFirewallRule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisFirewallRule class. + /// + /// lowest IP address included in the + /// range + /// highest IP address included in the + /// range + /// Resource ID. + /// Resource name. + /// Resource type. + public RedisFirewallRule(string startIP, string endIP, string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + StartIP = startIP; + EndIP = endIP; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets lowest IP address included in the range + /// + [JsonProperty(PropertyName = "properties.startIP")] + public string StartIP { get; set; } + + /// + /// Gets or sets highest IP address included in the range + /// + [JsonProperty(PropertyName = "properties.endIP")] + public string EndIP { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StartIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StartIP"); + } + if (EndIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EndIP"); + } + } + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRuleCreateParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRuleCreateParameters.cs new file mode 100644 index 000000000000..bc7d0e4c89aa --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisFirewallRuleCreateParameters.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.Redis.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Parameters required for creating a firewall rule on redis cache. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisFirewallRuleCreateParameters + { + /// + /// Initializes a new instance of the RedisFirewallRuleCreateParameters + /// class. + /// + public RedisFirewallRuleCreateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisFirewallRuleCreateParameters + /// class. + /// + /// lowest IP address included in the + /// range + /// highest IP address included in the + /// range + public RedisFirewallRuleCreateParameters(string startIP, string endIP) + { + StartIP = startIP; + EndIP = endIP; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets lowest IP address included in the range + /// + [JsonProperty(PropertyName = "properties.startIP")] + public string StartIP { get; set; } + + /// + /// Gets or sets highest IP address included in the range + /// + [JsonProperty(PropertyName = "properties.endIP")] + public string EndIP { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StartIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StartIP"); + } + if (EndIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EndIP"); + } + } + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisForceRebootResponse.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisForceRebootResponse.cs new file mode 100644 index 000000000000..11660c866411 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisForceRebootResponse.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.Redis.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Response to force reboot for Redis cache. + /// + public partial class RedisForceRebootResponse + { + /// + /// Initializes a new instance of the RedisForceRebootResponse class. + /// + public RedisForceRebootResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisForceRebootResponse class. + /// + /// Status message + public RedisForceRebootResponse(string message = default(string)) + { + Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets status message + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisKeyType.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisKeyType.cs index 57c047b62588..beda98cbdf1b 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisKeyType.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisKeyType.cs @@ -1,23 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for RedisKeyType. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum RedisKeyType { - [System.Runtime.Serialization.EnumMember(Value = "Primary")] + [EnumMember(Value = "Primary")] Primary, - [System.Runtime.Serialization.EnumMember(Value = "Secondary")] + [EnumMember(Value = "Secondary")] Secondary } + internal static class RedisKeyTypeEnumExtension + { + internal static string ToSerializedValue(this RedisKeyType? value) + { + return value == null ? null : ((RedisKeyType)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this RedisKeyType value) + { + switch( value ) + { + case RedisKeyType.Primary: + return "Primary"; + case RedisKeyType.Secondary: + return "Secondary"; + } + return null; + } + + internal static RedisKeyType? ParseRedisKeyType(this string value) + { + switch( value ) + { + case "Primary": + return RedisKeyType.Primary; + case "Secondary": + return RedisKeyType.Secondary; + } + return null; + } + } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServer.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServer.cs new file mode 100644 index 000000000000..4c55c676acee --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServer.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.Redis.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Linked server Id + /// + public partial class RedisLinkedServer + { + /// + /// Initializes a new instance of the RedisLinkedServer class. + /// + public RedisLinkedServer() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisLinkedServer class. + /// + /// Linked server Id. + public RedisLinkedServer(string id = default(string)) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets linked server Id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerCreateParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerCreateParameters.cs new file mode 100644 index 000000000000..873b4b4aec9c --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerCreateParameters.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. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Parameter required for creating a linked server to redis cache. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisLinkedServerCreateParameters + { + /// + /// Initializes a new instance of the RedisLinkedServerCreateParameters + /// class. + /// + public RedisLinkedServerCreateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisLinkedServerCreateParameters + /// class. + /// + /// Fully qualified resourceId of the + /// linked redis cache. + /// Location of the linked redis + /// cache. + /// Role of the linked server. Possible values + /// include: 'Primary', 'Secondary' + public RedisLinkedServerCreateParameters(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole) + { + LinkedRedisCacheId = linkedRedisCacheId; + LinkedRedisCacheLocation = linkedRedisCacheLocation; + ServerRole = serverRole; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified resourceId of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheId")] + public string LinkedRedisCacheId { get; set; } + + /// + /// Gets or sets location of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheLocation")] + public string LinkedRedisCacheLocation { get; set; } + + /// + /// Gets or sets role of the linked server. Possible values include: + /// 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "properties.serverRole")] + public ReplicationRole ServerRole { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (LinkedRedisCacheId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheId"); + } + if (LinkedRedisCacheLocation == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheLocation"); + } + } + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerWithProperties.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerWithProperties.cs new file mode 100644 index 000000000000..8af32c7341ca --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisLinkedServerWithProperties.cs @@ -0,0 +1,107 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Response to put/get linked server (with properties) for Redis cache. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisLinkedServerWithProperties : ProxyResource + { + /// + /// Initializes a new instance of the RedisLinkedServerWithProperties + /// class. + /// + public RedisLinkedServerWithProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisLinkedServerWithProperties + /// class. + /// + /// Fully qualified resourceId of the + /// linked redis cache. + /// Location of the linked redis + /// cache. + /// Role of the linked server. Possible values + /// include: 'Primary', 'Secondary' + /// Resource ID. + /// Resource name. + /// Resource type. + /// Terminal state of the link between + /// primary and secondary redis cache. + public RedisLinkedServerWithProperties(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole, string id = default(string), string name = default(string), string type = default(string), string provisioningState = default(string)) + : base(id, name, type) + { + LinkedRedisCacheId = linkedRedisCacheId; + LinkedRedisCacheLocation = linkedRedisCacheLocation; + ServerRole = serverRole; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified resourceId of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheId")] + public string LinkedRedisCacheId { get; set; } + + /// + /// Gets or sets location of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheLocation")] + public string LinkedRedisCacheLocation { get; set; } + + /// + /// Gets or sets role of the linked server. Possible values include: + /// 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "properties.serverRole")] + public ReplicationRole ServerRole { get; set; } + + /// + /// Gets terminal state of the link between primary and secondary redis + /// cache. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (LinkedRedisCacheId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheId"); + } + if (LinkedRedisCacheLocation == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheLocation"); + } + } + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisPatchSchedule.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisPatchSchedule.cs index ffb3febcdf35..fe7ff60e8aa2 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisPatchSchedule.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisPatchSchedule.cs @@ -1,89 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Response to put/get patch schedules for redis cache. + /// Response to put/get patch schedules for Redis cache. /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class RedisPatchSchedule + [Rest.Serialization.JsonTransformation] + public partial class RedisPatchSchedule : ProxyResource { /// /// Initializes a new instance of the RedisPatchSchedule class. /// - public RedisPatchSchedule() { } + public RedisPatchSchedule() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisPatchSchedule class. /// - /// List of patch schedules for redis + /// List of patch schedules for a Redis /// cache. - /// Resource Id - /// Resource name - /// Resource type - /// Resource location - public RedisPatchSchedule(System.Collections.Generic.IList scheduleEntries, string id = default(string), string name = default(string), string type = default(string), string location = default(string)) + /// Resource ID. + /// Resource name. + /// Resource type. + public RedisPatchSchedule(IList scheduleEntries, string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) { - Id = id; - Name = name; - Type = type; - Location = location; ScheduleEntries = scheduleEntries; + CustomInit(); } /// - /// Gets resource Id - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } - - /// - /// Gets resource type - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public string Type { get; private set; } - - /// - /// Gets resource location + /// An initialization method that performs custom operations like setting defaults /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] - public string Location { get; private set; } + partial void CustomInit(); /// - /// Gets or sets list of patch schedules for redis cache. + /// Gets or sets list of patch schedules for a Redis cache. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.scheduleEntries")] - public System.Collections.Generic.IList ScheduleEntries { get; set; } + [JsonProperty(PropertyName = "properties.scheduleEntries")] + public IList ScheduleEntries { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (ScheduleEntries == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ScheduleEntries"); + throw new ValidationException(ValidationRules.CannotBeNull, "ScheduleEntries"); } - if (this.ScheduleEntries != null) + if (ScheduleEntries != null) { - foreach (var element in this.ScheduleEntries) + foreach (var element in ScheduleEntries) { if (element != null) { diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRebootParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRebootParameters.cs index be546b2419ea..c83f438aff12 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRebootParameters.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRebootParameters.cs @@ -1,65 +1,78 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// - /// Specifies which redis node(s) to reboot. + /// Specifies which Redis node(s) to reboot. /// public partial class RedisRebootParameters { /// /// Initializes a new instance of the RedisRebootParameters class. /// - public RedisRebootParameters() { } + public RedisRebootParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisRebootParameters class. /// - /// Which redis node(s) to reboot. Depending + /// Which Redis node(s) to reboot. Depending /// on this value data loss is possible. Possible values include: /// 'PrimaryNode', 'SecondaryNode', 'AllNodes' - /// In case of cluster cache, this specifies - /// shard id which should be rebooted. + /// If clustering is enabled, the ID of the shard + /// to be rebooted. public RedisRebootParameters(string rebootType, int? shardId = default(int?)) { RebootType = rebootType; ShardId = shardId; + CustomInit(); } /// - /// Gets or sets which redis node(s) to reboot. Depending on this - /// value data loss is possible. Possible values include: - /// 'PrimaryNode', 'SecondaryNode', 'AllNodes' + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets which Redis node(s) to reboot. Depending on this value + /// data loss is possible. Possible values include: 'PrimaryNode', + /// 'SecondaryNode', 'AllNodes' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "rebootType")] + [JsonProperty(PropertyName = "rebootType")] public string RebootType { get; set; } /// - /// Gets or sets in case of cluster cache, this specifies shard id - /// which should be rebooted. + /// Gets or sets if clustering is enabled, the ID of the shard to be + /// rebooted. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "shardId")] + [JsonProperty(PropertyName = "shardId")] public int? ShardId { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (RebootType == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "RebootType"); + throw new ValidationException(ValidationRules.CannotBeNull, "RebootType"); } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRegenerateKeyParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRegenerateKeyParameters.cs index 93951634dd4e..81061642d532 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRegenerateKeyParameters.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisRegenerateKeyParameters.cs @@ -1,17 +1,20 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Newtonsoft.Json; using System.Linq; /// - /// Specifies which redis access keys to reset. + /// Specifies which Redis access keys to reset. /// public partial class RedisRegenerateKeyParameters { @@ -19,30 +22,39 @@ public partial class RedisRegenerateKeyParameters /// Initializes a new instance of the RedisRegenerateKeyParameters /// class. /// - public RedisRegenerateKeyParameters() { } + public RedisRegenerateKeyParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisRegenerateKeyParameters /// class. /// - /// Which redis access key to reset. Possible + /// The Redis access key to regenerate. Possible /// values include: 'Primary', 'Secondary' public RedisRegenerateKeyParameters(RedisKeyType keyType) { KeyType = keyType; + CustomInit(); } /// - /// Gets or sets which redis access key to reset. Possible values + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Redis access key to regenerate. Possible values /// include: 'Primary', 'Secondary' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "keyType")] + [JsonProperty(PropertyName = "keyType")] public RedisKeyType KeyType { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisResource.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisResource.cs index 6c4ba08b520e..64a660d4a363 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisResource.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisResource.cs @@ -1,155 +1,203 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// A single redis item in List or Get Operation. + /// A single Redis item in List or Get Operation. /// - [Microsoft.Rest.Serialization.JsonTransformation] - public partial class RedisResource : Resource + [Rest.Serialization.JsonTransformation] + public partial class RedisResource : TrackedResource { /// /// Initializes a new instance of the RedisResource class. /// - public RedisResource() { } + public RedisResource() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisResource class. /// - /// Resource location - /// What sku of redis cache to deploy. - /// Resource Id - /// Resource name - /// Resource type - /// Resource tags - /// Redis Version. - /// Redis instance provisioning - /// status - /// Redis host name - /// Redis non-ssl port - /// Redis ssl port + /// The geo-location where the resource + /// lives + /// The SKU of the Redis cache to deploy. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// All Redis Settings. Few possible /// keys: /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value /// etc. - /// If the value is true, then the - /// non-ssl redis server port (6379) will be enabled. - /// tenantSettings + /// Specifies whether the non-ssl Redis + /// server port (6379) is enabled. + /// A dictionary of tenant + /// settings /// The number of shards to be created on a /// Premium Cluster Cache. /// The full resource ID of a subnet in a - /// virtual network to deploy the redis cache in. Example format: + /// virtual network to deploy the Redis cache in. Example format: /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 - /// Required when deploying a redis cache - /// inside an existing Azure Virtual Network. - public RedisResource(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string redisVersion = default(string), string provisioningState = default(string), string hostName = default(string), int? port = default(int?), int? sslPort = default(int?), System.Collections.Generic.IDictionary redisConfiguration = default(System.Collections.Generic.IDictionary), bool? enableNonSslPort = default(bool?), System.Collections.Generic.IDictionary tenantSettings = default(System.Collections.Generic.IDictionary), int? shardCount = default(int?), string subnetId = default(string), string staticIP = default(string)) + /// Static IP address. Required when deploying a + /// Redis cache inside an existing Azure Virtual Network. + /// Redis version. + /// Redis instance provisioning + /// status. + /// Redis host name. + /// Redis non-SSL port. + /// Redis SSL port. + /// The keys of the Redis cache - not set if + /// this object is not the response to Create or Update redis + /// cache + /// List of the linked servers associated + /// with the cache + /// A list of availability zones denoting where the + /// resource needs to come from. + public RedisResource(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IDictionary redisConfiguration = default(IDictionary), bool? enableNonSslPort = default(bool?), IDictionary tenantSettings = default(IDictionary), int? shardCount = default(int?), string subnetId = default(string), string staticIP = default(string), string redisVersion = default(string), string provisioningState = default(string), string hostName = default(string), int? port = default(int?), int? sslPort = default(int?), RedisAccessKeys accessKeys = default(RedisAccessKeys), IList linkedServers = default(IList), IList zones = default(IList)) : base(location, id, name, type, tags) { - RedisVersion = redisVersion; - ProvisioningState = provisioningState; - HostName = hostName; - Port = port; - SslPort = sslPort; RedisConfiguration = redisConfiguration; EnableNonSslPort = enableNonSslPort; TenantSettings = tenantSettings; ShardCount = shardCount; + Sku = sku; SubnetId = subnetId; StaticIP = staticIP; - Sku = sku; + RedisVersion = redisVersion; + ProvisioningState = provisioningState; + HostName = hostName; + Port = port; + SslPort = sslPort; + AccessKeys = accessKeys; + LinkedServers = linkedServers; + Zones = zones; + CustomInit(); } /// - /// Gets redis Version. + /// An initialization method that performs custom operations like setting defaults /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.redisVersion")] - public string RedisVersion { get; private set; } + partial void CustomInit(); /// - /// Gets redis instance provisioning status + /// Gets or sets all Redis Settings. Few possible keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.provisioningState")] - public string ProvisioningState { get; private set; } + [JsonProperty(PropertyName = "properties.redisConfiguration")] + public IDictionary RedisConfiguration { get; set; } /// - /// Gets redis host name + /// Gets or sets specifies whether the non-ssl Redis server port (6379) + /// is enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.hostName")] - public string HostName { get; private set; } + [JsonProperty(PropertyName = "properties.enableNonSslPort")] + public bool? EnableNonSslPort { get; set; } /// - /// Gets redis non-ssl port + /// Gets or sets a dictionary of tenant settings /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.port")] - public int? Port { get; private set; } + [JsonProperty(PropertyName = "properties.tenantSettings")] + public IDictionary TenantSettings { get; set; } /// - /// Gets redis ssl port + /// Gets or sets the number of shards to be created on a Premium + /// Cluster Cache. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sslPort")] - public int? SslPort { get; private set; } + [JsonProperty(PropertyName = "properties.shardCount")] + public int? ShardCount { get; set; } /// - /// Gets or sets all Redis Settings. Few possible keys: - /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value - /// etc. + /// Gets or sets the SKU of the Redis cache to deploy. + /// + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the full resource ID of a subnet in a virtual network + /// to deploy the Redis cache in. Example format: + /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.redisConfiguration")] - public System.Collections.Generic.IDictionary RedisConfiguration { get; set; } + [JsonProperty(PropertyName = "properties.subnetId")] + public string SubnetId { get; set; } /// - /// Gets or sets if the value is true, then the non-ssl redis server - /// port (6379) will be enabled. + /// Gets or sets static IP address. Required when deploying a Redis + /// cache inside an existing Azure Virtual Network. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enableNonSslPort")] - public bool? EnableNonSslPort { get; set; } + [JsonProperty(PropertyName = "properties.staticIP")] + public string StaticIP { get; set; } /// - /// Gets or sets tenantSettings + /// Gets redis version. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tenantSettings")] - public System.Collections.Generic.IDictionary TenantSettings { get; set; } + [JsonProperty(PropertyName = "properties.redisVersion")] + public string RedisVersion { get; private set; } /// - /// Gets or sets the number of shards to be created on a Premium - /// Cluster Cache. + /// Gets redis instance provisioning status. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.shardCount")] - public int? ShardCount { get; set; } + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } /// - /// Gets or sets the full resource ID of a subnet in a virtual network - /// to deploy the redis cache in. Example format: - /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 + /// Gets redis host name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.subnetId")] - public string SubnetId { get; set; } + [JsonProperty(PropertyName = "properties.hostName")] + public string HostName { get; private set; } /// - /// Gets or sets required when deploying a redis cache inside an - /// existing Azure Virtual Network. + /// Gets redis non-SSL port. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.staticIP")] - public string StaticIP { get; set; } + [JsonProperty(PropertyName = "properties.port")] + public int? Port { get; private set; } /// - /// Gets or sets what sku of redis cache to deploy. + /// Gets redis SSL port. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sku")] - public Sku Sku { get; set; } + [JsonProperty(PropertyName = "properties.sslPort")] + public int? SslPort { get; private set; } + + /// + /// Gets the keys of the Redis cache - not set if this object is not + /// the response to Create or Update redis cache + /// + [JsonProperty(PropertyName = "properties.accessKeys")] + public RedisAccessKeys AccessKeys { get; private set; } + + /// + /// Gets list of the linked servers associated with the cache + /// + [JsonProperty(PropertyName = "properties.linkedServers")] + public IList LinkedServers { get; private set; } + + /// + /// Gets or sets a list of availability zones denoting where the + /// resource needs to come from. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -157,25 +205,25 @@ public override void Validate() base.Validate(); if (Sku == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Sku"); + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (this.SubnetId != null) + if (Sku != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(this.SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); - } + Sku.Validate(); } - if (this.StaticIP != null) + if (SubnetId != null) { - if (!System.Text.RegularExpressions.Regex.IsMatch(this.StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) + if (!System.Text.RegularExpressions.Regex.IsMatch(SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); + throw new ValidationException(ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); } } - if (this.Sku != null) + if (StaticIP != null) { - this.Sku.Validate(); + if (!System.Text.RegularExpressions.Regex.IsMatch(StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) + { + throw new ValidationException(ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); + } } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisUpdateParameters.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisUpdateParameters.cs index b0e2c30c6df2..1ff839e96d82 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisUpdateParameters.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/RedisUpdateParameters.cs @@ -1,25 +1,35 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Parameters supplied to the Update Redis operation. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class RedisUpdateParameters { /// /// Initializes a new instance of the RedisUpdateParameters class. /// - public RedisUpdateParameters() { } + public RedisUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the RedisUpdateParameters class. @@ -28,110 +38,81 @@ public RedisUpdateParameters() { } /// keys: /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value /// etc. - /// If the value is true, then the - /// non-ssl redis server port (6379) will be enabled. - /// tenantSettings + /// Specifies whether the non-ssl Redis + /// server port (6379) is enabled. + /// A dictionary of tenant + /// settings /// The number of shards to be created on a /// Premium Cluster Cache. - /// The full resource ID of a subnet in a - /// virtual network to deploy the redis cache in. Example format: - /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 - /// Required when deploying a redis cache - /// inside an existing Azure Virtual Network. - /// What sku of redis cache to deploy. - /// Resource tags - public RedisUpdateParameters(System.Collections.Generic.IDictionary redisConfiguration = default(System.Collections.Generic.IDictionary), bool? enableNonSslPort = default(bool?), System.Collections.Generic.IDictionary tenantSettings = default(System.Collections.Generic.IDictionary), int? shardCount = default(int?), string subnetId = default(string), string staticIP = default(string), Sku sku = default(Sku), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + /// The SKU of the Redis cache to deploy. + /// Resource tags. + public RedisUpdateParameters(IDictionary redisConfiguration = default(IDictionary), bool? enableNonSslPort = default(bool?), IDictionary tenantSettings = default(IDictionary), int? shardCount = default(int?), Sku sku = default(Sku), IDictionary tags = default(IDictionary)) { RedisConfiguration = redisConfiguration; EnableNonSslPort = enableNonSslPort; TenantSettings = tenantSettings; ShardCount = shardCount; - SubnetId = subnetId; - StaticIP = staticIP; Sku = sku; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets all Redis Settings. Few possible keys: /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value /// etc. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.redisConfiguration")] - public System.Collections.Generic.IDictionary RedisConfiguration { get; set; } + [JsonProperty(PropertyName = "properties.redisConfiguration")] + public IDictionary RedisConfiguration { get; set; } /// - /// Gets or sets if the value is true, then the non-ssl redis server - /// port (6379) will be enabled. + /// Gets or sets specifies whether the non-ssl Redis server port (6379) + /// is enabled. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.enableNonSslPort")] + [JsonProperty(PropertyName = "properties.enableNonSslPort")] public bool? EnableNonSslPort { get; set; } /// - /// Gets or sets tenantSettings + /// Gets or sets a dictionary of tenant settings /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tenantSettings")] - public System.Collections.Generic.IDictionary TenantSettings { get; set; } + [JsonProperty(PropertyName = "properties.tenantSettings")] + public IDictionary TenantSettings { get; set; } /// /// Gets or sets the number of shards to be created on a Premium /// Cluster Cache. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.shardCount")] + [JsonProperty(PropertyName = "properties.shardCount")] public int? ShardCount { get; set; } /// - /// Gets or sets the full resource ID of a subnet in a virtual network - /// to deploy the redis cache in. Example format: - /// /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.subnetId")] - public string SubnetId { get; set; } - - /// - /// Gets or sets required when deploying a redis cache inside an - /// existing Azure Virtual Network. + /// Gets or sets the SKU of the Redis cache to deploy. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.staticIP")] - public string StaticIP { get; set; } - - /// - /// Gets or sets what sku of redis cache to deploy. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.sku")] + [JsonProperty(PropertyName = "properties.sku")] public Sku Sku { get; set; } /// - /// Gets or sets resource tags + /// Gets or sets resource tags. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.SubnetId != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(this.SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); - } - } - if (this.StaticIP != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(this.StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); - } - } - if (this.Sku != null) + if (Sku != null) { - this.Sku.Validate(); + Sku.Validate(); } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ReplicationRole.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ReplicationRole.cs new file mode 100644 index 000000000000..f0f36d3644b2 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ReplicationRole.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.Redis.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ReplicationRole. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ReplicationRole + { + [EnumMember(Value = "Primary")] + Primary, + [EnumMember(Value = "Secondary")] + Secondary + } + internal static class ReplicationRoleEnumExtension + { + internal static string ToSerializedValue(this ReplicationRole? value) + { + return value == null ? null : ((ReplicationRole)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ReplicationRole value) + { + switch( value ) + { + case ReplicationRole.Primary: + return "Primary"; + case ReplicationRole.Secondary: + return "Secondary"; + } + return null; + } + + internal static ReplicationRole? ParseReplicationRole(this string value) + { + switch( value ) + { + case "Primary": + return ReplicationRole.Primary; + case "Secondary": + return ReplicationRole.Secondary; + } + return null; + } + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Resource.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Resource.cs index 7ddc13b57859..86a8933d3f57 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Resource.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Resource.cs @@ -1,84 +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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; using System.Linq; /// /// The Resource definition. /// - public partial class Resource : Microsoft.Rest.Azure.IResource + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. /// - /// Resource location - /// Resource Id - /// Resource name - /// Resource type - /// Resource tags - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + /// Resource ID. + /// Resource name. + /// Resource type. + public Resource(string id = default(string), string name = default(string), string type = default(string)) { Id = id; Name = name; Type = type; - Location = location; - Tags = tags; + CustomInit(); } /// - /// Gets resource Id - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } - - /// - /// Gets resource name + /// An initialization method that performs custom operations like setting defaults /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + partial void CustomInit(); /// - /// Gets resource type + /// Gets resource ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } /// - /// Gets or sets resource location + /// Gets resource name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] - public string Location { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } /// - /// Gets or sets resource tags + /// Gets resource type. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Location == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); - } - } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ScheduleEntry.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ScheduleEntry.cs index 5ab89f9efc6f..d15ebfb7d8a4 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/ScheduleEntry.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/ScheduleEntry.cs @@ -1,30 +1,36 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Newtonsoft.Json; using System.Linq; /// - /// Patch schedule entry for Premium Redis Cache. + /// Patch schedule entry for a Premium Redis Cache. /// public partial class ScheduleEntry { /// /// Initializes a new instance of the ScheduleEntry class. /// - public ScheduleEntry() { } + public ScheduleEntry() + { + CustomInit(); + } /// /// Initializes a new instance of the ScheduleEntry class. /// - /// Day of week when cache can be patched. - /// Possible values include: 'Monday', 'Tuesday', 'Wednesday', + /// Day of the week when a cache can be + /// patched. Possible values include: 'Monday', 'Tuesday', 'Wednesday', /// 'Thursday', 'Friday', 'Saturday', 'Sunday', 'Everyday', /// 'Weekend' /// Start hour after which cache patching @@ -36,33 +42,39 @@ public ScheduleEntry() { } DayOfWeek = dayOfWeek; StartHourUtc = startHourUtc; MaintenanceWindow = maintenanceWindow; + CustomInit(); } /// - /// Gets or sets day of week when cache can be patched. Possible + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets day of the week when a cache can be patched. Possible /// values include: 'Monday', 'Tuesday', 'Wednesday', 'Thursday', /// 'Friday', 'Saturday', 'Sunday', 'Everyday', 'Weekend' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "dayOfWeek")] + [JsonProperty(PropertyName = "dayOfWeek")] public DayOfWeek DayOfWeek { get; set; } /// /// Gets or sets start hour after which cache patching can start. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "startHourUtc")] + [JsonProperty(PropertyName = "startHourUtc")] public int StartHourUtc { get; set; } /// /// Gets or sets ISO8601 timespan specifying how much time cache /// patching can take. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "maintenanceWindow")] + [JsonProperty(PropertyName = "maintenanceWindow")] public System.TimeSpan? MaintenanceWindow { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Sku.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Sku.cs index a161beaedcdc..5a2c27c4225a 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/Sku.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/Sku.cs @@ -1,80 +1,95 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// - /// Sku parameters supplied to the create redis operation. + /// SKU parameters supplied to the create Redis operation. /// public partial class Sku { /// /// Initializes a new instance of the Sku class. /// - public Sku() { } + public Sku() + { + CustomInit(); + } /// /// Initializes a new instance of the Sku class. /// - /// What type of redis cache to deploy. Valid - /// values: (Basic, Standard, Premium). Possible values include: - /// 'Basic', 'Standard', 'Premium' - /// Which family to use. Valid values: (C, P). - /// Possible values include: 'C', 'P' - /// What size of redis cache to deploy. Valid - /// values: for C family (0, 1, 2, 3, 4, 5, 6), for P family (1, 2, - /// 3, 4) + /// The type of Redis cache to deploy. Valid values: + /// (Basic, Standard, Premium). Possible values include: 'Basic', + /// 'Standard', 'Premium' + /// The SKU family to use. Valid values: (C, P). + /// (C = Basic/Standard, P = Premium). Possible values include: 'C', + /// 'P' + /// The size of the Redis cache to deploy. Valid + /// values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P + /// (Premium) family (1, 2, 3, 4). public Sku(string name, string family, int capacity) { Name = name; Family = family; Capacity = capacity; + CustomInit(); } /// - /// Gets or sets what type of redis cache to deploy. Valid values: + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the type of Redis cache to deploy. Valid values: /// (Basic, Standard, Premium). Possible values include: 'Basic', /// 'Standard', 'Premium' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets which family to use. Valid values: (C, P). Possible - /// values include: 'C', 'P' + /// Gets or sets the SKU family to use. Valid values: (C, P). (C = + /// Basic/Standard, P = Premium). Possible values include: 'C', 'P' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "family")] + [JsonProperty(PropertyName = "family")] public string Family { get; set; } /// - /// Gets or sets what size of redis cache to deploy. Valid values: for - /// C family (0, 1, 2, 3, 4, 5, 6), for P family (1, 2, 3, 4) + /// Gets or sets the size of the Redis cache to deploy. Valid values: + /// for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P + /// (Premium) family (1, 2, 3, 4). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "capacity")] + [JsonProperty(PropertyName = "capacity")] public int Capacity { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } if (Family == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Family"); + throw new ValidationException(ValidationRules.CannotBeNull, "Family"); } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuFamily.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuFamily.cs index 106633707e40..09c6f49c4172 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuFamily.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuFamily.cs @@ -1,10 +1,12 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuName.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuName.cs index 8b88185bfaab..4ad06da4aac7 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuName.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/SkuName.cs @@ -1,10 +1,12 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis.Models { diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Models/TrackedResource.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..afe28dd0050c --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Models/TrackedResource.cs @@ -0,0 +1,80 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The resource model definition for a ARM 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 + /// Resource ID. + /// Resource name. + /// Resource type. + /// 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; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/Operations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/Operations.cs new file mode 100644 index 000000000000..b9949e783f81 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/Operations.cs @@ -0,0 +1,402 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Redis +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// 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(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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 CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + 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/src/SDKs/RedisCache/Management.Redis/Generated/OperationsExtensions.cs b/src/SDKs/RedisCache/Management.Redis/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..fbfbd33b3ca4 --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/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.Redis +{ + 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/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperations.cs index 35c5e00bad0c..49746e849473 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperations.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperations.cs @@ -1,22 +1,31 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { - using System.Linq; 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; /// /// PatchSchedulesOperations operations. /// - internal partial class PatchSchedulesOperations : Microsoft.Rest.IServiceOperations, IPatchSchedulesOperations + internal partial class PatchSchedulesOperations : IServiceOperations, IPatchSchedulesOperations { /// /// Initializes a new instance of the PatchSchedulesOperations class. @@ -29,11 +38,11 @@ internal partial class PatchSchedulesOperations : Microsoft.Rest.IServiceOperati /// internal PatchSchedulesOperations(RedisManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -42,16 +51,17 @@ internal PatchSchedulesOperations(RedisManagementClient client) public RedisManagementClient Client { get; private set; } /// - /// Create or replace the patching schedule for redis cache. + /// Create or replace the patching schedule for Redis cache (requires Premium + /// SKU). /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters to set patch schedules for redis cache. + /// Parameters to set the patching schedule for Redis cache. /// /// /// Headers that will be added to request. @@ -59,90 +69,95 @@ internal PatchSchedulesOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisPatchSchedule parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisPatchSchedule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/patchSchedules/default").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -159,56 +174,56 @@ internal PatchSchedulesOperations(RedisManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -218,7 +233,7 @@ internal PatchSchedulesOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -231,27 +246,45 @@ internal PatchSchedulesOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + 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) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes the patching schedule for redis cache. + /// Deletes the patching schedule of a redis cache (requires Premium SKU). /// /// /// The name of the resource group. @@ -265,78 +298,83 @@ internal PatchSchedulesOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/patchSchedules/default").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -352,43 +390,51 @@ internal PatchSchedulesOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -398,7 +444,7 @@ internal PatchSchedulesOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -407,13 +453,13 @@ internal PatchSchedulesOperations(RedisManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the patching schedule for redis cache. + /// Gets the patching schedule of a redis cache (requires Premium SKU). /// /// /// The name of the resource group. @@ -427,81 +473,86 @@ internal PatchSchedulesOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/patchSchedules/default").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -517,51 +568,51 @@ internal PatchSchedulesOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -571,7 +622,7 @@ internal PatchSchedulesOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -584,21 +635,21 @@ internal PatchSchedulesOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperationsExtensions.cs b/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperationsExtensions.cs index db12b981cfd4..574df56ede72 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperationsExtensions.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/PatchSchedulesOperationsExtensions.cs @@ -1,16 +1,20 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for PatchSchedulesOperations. @@ -18,7 +22,8 @@ namespace Microsoft.Azure.Management.Redis public static partial class PatchSchedulesOperationsExtensions { /// - /// Create or replace the patching schedule for redis cache. + /// Create or replace the patching schedule for Redis cache (requires Premium + /// SKU). /// /// /// The operations group for this extension method. @@ -27,18 +32,19 @@ public static partial class PatchSchedulesOperationsExtensions /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters to set patch schedules for redis cache. + /// Parameters to set the patching schedule for Redis cache. /// public static RedisPatchSchedule CreateOrUpdate(this IPatchSchedulesOperations operations, string resourceGroupName, string name, RedisPatchSchedule parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IPatchSchedulesOperations)s).CreateOrUpdateAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Create or replace the patching schedule for redis cache. + /// Create or replace the patching schedule for Redis cache (requires Premium + /// SKU). /// /// /// The operations group for this extension method. @@ -47,15 +53,15 @@ public static RedisPatchSchedule CreateOrUpdate(this IPatchSchedulesOperations o /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters to set patch schedules for redis cache. + /// Parameters to set the patching schedule for Redis cache. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, RedisPatchSchedule parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, RedisPatchSchedule parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -64,7 +70,7 @@ public static RedisPatchSchedule CreateOrUpdate(this IPatchSchedulesOperations o } /// - /// Deletes the patching schedule for redis cache. + /// Deletes the patching schedule of a redis cache (requires Premium SKU). /// /// /// The operations group for this extension method. @@ -77,11 +83,11 @@ public static RedisPatchSchedule CreateOrUpdate(this IPatchSchedulesOperations o /// public static void Delete(this IPatchSchedulesOperations operations, string resourceGroupName, string name) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IPatchSchedulesOperations)s).DeleteAsync(resourceGroupName, name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, name).GetAwaiter().GetResult(); } /// - /// Deletes the patching schedule for redis cache. + /// Deletes the patching schedule of a redis cache (requires Premium SKU). /// /// /// The operations group for this extension method. @@ -95,13 +101,13 @@ public static void Delete(this IPatchSchedulesOperations operations, string reso /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets the patching schedule for redis cache. + /// Gets the patching schedule of a redis cache (requires Premium SKU). /// /// /// The operations group for this extension method. @@ -114,11 +120,11 @@ public static void Delete(this IPatchSchedulesOperations operations, string reso /// public static RedisPatchSchedule Get(this IPatchSchedulesOperations operations, string resourceGroupName, string name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IPatchSchedulesOperations)s).GetAsync(resourceGroupName, name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, name).GetAwaiter().GetResult(); } /// - /// Gets the patching schedule for redis cache. + /// Gets the patching schedule of a redis cache (requires Premium SKU). /// /// /// The operations group for this extension method. @@ -132,7 +138,7 @@ public static RedisPatchSchedule Get(this IPatchSchedulesOperations operations, /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/RedisManagementClient.cs b/src/SDKs/RedisCache/Management.Redis/Generated/RedisManagementClient.cs index 323a61fef8ae..999f4e6765c3 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/RedisManagementClient.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/RedisManagementClient.cs @@ -1,22 +1,30 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { - using System.Linq; 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 Azure Redis Cache Service + /// REST API for Azure Redis Cache Service. /// - public partial class RedisManagementClient : Microsoft.Rest.ServiceClient, IRedisManagementClient, IAzureClient + public partial class RedisManagementClient : ServiceClient, IRedisManagementClient, IAzureClient { /// /// The base URI of the service. @@ -26,20 +34,20 @@ public partial class RedisManagementClient : Microsoft.Rest.ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// - /// Gets subscription credentials which uniquely identify Microsoft Azure + /// Gets subscription credentials which uniquely identify the Microsoft Azure /// subscription. The subscription ID forms part of the URI for every service /// call. /// @@ -67,25 +75,40 @@ public partial class RedisManagementClient : Microsoft.Rest.ServiceClient public bool? GenerateClientRequestId { get; set; } + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + /// /// Gets the IRedisOperations. /// public virtual IRedisOperations Redis { get; private set; } + /// + /// Gets the IFirewallRulesOperations. + /// + public virtual IFirewallRulesOperations FirewallRules { get; private set; } + /// /// Gets the IPatchSchedulesOperations. /// public virtual IPatchSchedulesOperations PatchSchedules { get; private set; } + /// + /// Gets the ILinkedServerOperations. + /// + public virtual ILinkedServerOperations LinkedServer { get; private set; } + /// /// Initializes a new instance of the RedisManagementClient class. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected RedisManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected RedisManagementClient(params DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -97,9 +120,9 @@ protected RedisManagementClient(params System.Net.Http.DelegatingHandler[] handl /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected RedisManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected RedisManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -114,13 +137,13 @@ protected RedisManagementClient(System.Net.Http.HttpClientHandler rootHandler, p /// /// Thrown when a required parameter is null /// - protected RedisManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected RedisManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -138,13 +161,13 @@ protected RedisManagementClient(System.Uri baseUri, params System.Net.Http.Deleg /// /// Thrown when a required parameter is null /// - protected RedisManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected RedisManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -159,16 +182,16 @@ protected RedisManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHa /// /// Thrown when a required parameter is null /// - public RedisManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public RedisManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -187,16 +210,16 @@ public RedisManagementClient(Microsoft.Rest.ServiceClientCredentials credentials /// /// Thrown when a required parameter is null /// - public RedisManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public RedisManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -215,7 +238,7 @@ public RedisManagementClient(Microsoft.Rest.ServiceClientCredentials credentials /// /// Thrown when a required parameter is null /// - public RedisManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public RedisManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -225,11 +248,11 @@ public RedisManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCre { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -251,7 +274,7 @@ public RedisManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCre /// /// Thrown when a required parameter is null /// - public RedisManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public RedisManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -261,11 +284,11 @@ public RedisManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCre { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -278,42 +301,45 @@ public RedisManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCre /// private void Initialize() { - this.Redis = new RedisOperations(this); - this.PatchSchedules = new PatchSchedulesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.ApiVersion = "2016-04-01"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + Operations = new Operations(this); + Redis = new RedisOperations(this); + FirewallRules = new FirewallRulesOperations(this); + PatchSchedules = new PatchSchedulesOperations(this); + LinkedServer = new LinkedServerOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2017-10-01"; + 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 Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + 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 Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperations.cs b/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperations.cs index 46d9e4eb1bcc..d364c2a24e7a 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperations.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperations.cs @@ -1,22 +1,31 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { - using System.Linq; 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; /// /// RedisOperations operations. /// - internal partial class RedisOperations : Microsoft.Rest.IServiceOperations, IRedisOperations + internal partial class RedisOperations : IServiceOperations, IRedisOperations { /// /// Initializes a new instance of the RedisOperations class. @@ -29,11 +38,11 @@ internal partial class RedisOperations : Microsoft.Rest.IServiceOperations internal RedisOperations(RedisManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -42,17 +51,17 @@ internal RedisOperations(RedisManagementClient client) public RedisManagementClient Client { get; private set; } /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Create Redis operation. /// /// /// The headers that will be added to request. @@ -60,28 +69,24 @@ internal RedisOperations(RedisManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync( - resourceGroupName, name, parameters, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Update an existing Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Update Redis operation. /// /// /// Headers that will be added to request. @@ -89,90 +94,91 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -189,56 +195,56 @@ internal RedisOperations(RedisManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201 && (int)_statusCode != 200) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -248,7 +254,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -256,59 +262,38 @@ internal RedisOperations(RedisManagementClient client) _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 = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Update an existing Redis cache + /// Deletes a Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters supplied to the Update redis operation. + /// The name of the Redis cache. /// /// /// The headers that will be added to request. @@ -316,27 +301,21 @@ internal RedisOperations(RedisManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync( - resourceGroupName, name, parameters, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Update an existing Redis cache + /// Gets a Redis cache (resource description). /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters supplied to the Update redis operation. + /// The name of the Redis cache. /// /// /// Headers that will be added to request. @@ -344,86 +323,86 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); - } - if (parameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -438,58 +417,52 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -499,7 +472,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -512,135 +485,111 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Lists all Redis caches in a resource group. /// /// /// The name of the resource group. /// - /// - /// The name of the redis cache. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync( - resourceGroupName, name, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); - } - - /// - /// Deletes a redis cache. This operation takes a while to complete. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// /// /// 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 System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (name == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("name", name); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -656,43 +605,51 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -702,110 +659,115 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets a redis cache (resource description). + /// Gets all Redis caches in the specified subscription. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// /// /// 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 System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (name == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); - } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("name", name); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/Redis/").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -821,51 +783,51 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -875,7 +837,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -888,106 +850,121 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets all redis caches in a resource group. + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The name of the resource group. /// + /// + /// The name of the Redis cache. + /// /// /// Headers that will be added to request. /// /// /// 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 System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.ApiVersion == null) + if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (this.Client.SubscriptionId == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1003,51 +980,51 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1057,7 +1034,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1070,97 +1047,133 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets all redis caches in the specified subscription. + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Specifies which key to regenerate. + /// /// /// 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 System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.SubscriptionId == null) + if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/Redis/").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/regenerateKey").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1175,52 +1188,58 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1230,7 +1249,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1243,34 +1262,37 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Retrieve a redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. /// /// /// Headers that will be added to request. @@ -1278,81 +1300,95 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ForceReboot", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/listKeys").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/forceReboot").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1367,52 +1403,58 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1422,7 +1464,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1435,37 +1477,87 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Regenerate redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Import data into Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Export data from the redis cache to blobs in a container. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which key to reset. + /// Parameters for Redis export operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. /// /// /// Headers that will be added to request. @@ -1473,90 +1565,95 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/regenerateKey").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1573,56 +1670,56 @@ internal RedisOperations(RedisManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1632,7 +1729,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1645,37 +1742,51 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + 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) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Reboot specified redis node(s). This operation requires write permission - /// to the cache resource. There can be potential data loss. + /// Deletes a Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Specifies which redis node(s) to reboot. + /// The name of the Redis cache. /// /// /// Headers that will be added to request. @@ -1683,87 +1794,83 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); - } - if (parameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ForceReboot", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/forceReboot").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1778,50 +1885,52 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1831,7 +1940,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1840,48 +1949,22 @@ internal RedisOperations(RedisManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Import data into redis cache. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// - /// - /// Parameters for redis import operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginImportDataWithHttpMessagesAsync( - resourceGroupName, name, parameters, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); - } - - /// - /// Import data into redis cache. + /// Import data into Redis cache. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis import operation. + /// Parameters for Redis import operation. /// /// /// Headers that will be added to request. @@ -1889,87 +1972,92 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task BeginImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginImportData", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginImportData", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/import").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1986,48 +2074,56 @@ internal RedisOperations(RedisManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2037,7 +2133,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2046,48 +2142,22 @@ internal RedisOperations(RedisManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Import data into redis cache. + /// Export data from the redis cache to blobs in a container. /// /// /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginExportDataWithHttpMessagesAsync( - resourceGroupName, name, parameters, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); - } - - /// - /// Import data into redis cache. - /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// - /// - /// Parameters for redis export operation. + /// Parameters for Redis export operation. /// /// /// Headers that will be added to request. @@ -2095,87 +2165,92 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task BeginExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); } if (parameters == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (parameters != null) { parameters.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("name", name); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginExportData", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginExportData", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/Redis/{name}/export").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _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(this.Client.ApiVersion))); + _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 - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2192,48 +2267,56 @@ internal RedisOperations(RedisManagementClient client) string _requestContent = null; if(parameters != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2243,7 +2326,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2252,13 +2335,13 @@ internal RedisOperations(RedisManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets all redis caches in a resource group. + /// Lists all Redis caches in a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -2269,61 +2352,66 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2339,51 +2427,51 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2393,7 +2481,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2406,27 +2494,27 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets all redis caches in the specified subscription. + /// Gets all Redis caches in the specified subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -2437,61 +2525,66 @@ internal RedisOperations(RedisManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2507,51 +2600,51 @@ internal RedisOperations(RedisManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) { ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2561,7 +2654,7 @@ internal RedisOperations(RedisManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2574,21 +2667,21 @@ internal RedisOperations(RedisManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperationsExtensions.cs b/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperationsExtensions.cs index 81e77ea20469..4ef9eef6067d 100644 --- a/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperationsExtensions.cs +++ b/src/SDKs/RedisCache/Management.Redis/Generated/RedisOperationsExtensions.cs @@ -1,16 +1,20 @@ +// // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Redis { + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for RedisOperations. @@ -18,8 +22,8 @@ namespace Microsoft.Azure.Management.Redis public static partial class RedisOperationsExtensions { /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. /// /// /// The operations group for this extension method. @@ -28,19 +32,19 @@ public static partial class RedisOperationsExtensions /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Create Redis operation. /// public static RedisResource Create(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).CreateAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. /// /// /// The operations group for this extension method. @@ -49,15 +53,15 @@ public static RedisResource Create(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Create Redis operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -66,8 +70,7 @@ public static RedisResource Create(this IRedisOperations operations, string reso } /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Update an existing Redis cache. /// /// /// The operations group for this extension method. @@ -76,19 +79,18 @@ public static RedisResource Create(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Update Redis operation. /// - public static RedisResource BeginCreate(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters) + public static RedisResource Update(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).BeginCreateAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Create or replace (overwrite/recreate, with potential downtime) an - /// existing redis cache + /// Update an existing Redis cache. /// /// /// The operations group for this extension method. @@ -97,24 +99,24 @@ public static RedisResource BeginCreate(this IRedisOperations operations, string /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters supplied to the Create redis operation. + /// Parameters supplied to the Update Redis operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginCreateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task UpdateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Update an existing Redis cache + /// Deletes a Redis cache. /// /// /// The operations group for this extension method. @@ -123,18 +125,15 @@ public static RedisResource BeginCreate(this IRedisOperations operations, string /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// - /// - /// Parameters supplied to the Update redis operation. - /// - public static RedisResource Update(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters) + public static void Delete(this IRedisOperations operations, string resourceGroupName, string name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).UpdateAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, name).GetAwaiter().GetResult(); } /// - /// Update an existing Redis cache + /// Deletes a Redis cache. /// /// /// The operations group for this extension method. @@ -143,24 +142,18 @@ public static RedisResource Update(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters supplied to the Update redis operation. + /// The name of the Redis cache. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task UpdateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Update an existing Redis cache + /// Gets a Redis cache (resource description). /// /// /// The operations group for this extension method. @@ -169,18 +162,15 @@ public static RedisResource Update(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// - /// - /// Parameters supplied to the Update redis operation. - /// - public static RedisResource BeginUpdate(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters) + public static RedisResource Get(this IRedisOperations operations, string resourceGroupName, string name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).BeginUpdateAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, name).GetAwaiter().GetResult(); } /// - /// Update an existing Redis cache + /// Gets a Redis cache (resource description). /// /// /// The operations group for this extension method. @@ -189,24 +179,21 @@ public static RedisResource BeginUpdate(this IRedisOperations operations, string /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters supplied to the Update redis operation. + /// The name of the Redis cache. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginUpdateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Lists all Redis caches in a resource group. /// /// /// The operations group for this extension method. @@ -214,16 +201,13 @@ public static RedisResource BeginUpdate(this IRedisOperations operations, string /// /// The name of the resource group. /// - /// - /// The name of the redis cache. - /// - public static void Delete(this IRedisOperations operations, string resourceGroupName, string name) + public static IPage ListByResourceGroup(this IRedisOperations operations, string resourceGroupName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).DeleteAsync(resourceGroupName, name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Lists all Redis caches in a resource group. /// /// /// The operations group for this extension method. @@ -231,56 +215,48 @@ public static void Delete(this IRedisOperations operations, string resourceGroup /// /// The name of the resource group. /// - /// - /// The name of the redis cache. - /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IRedisOperations operations, string resourceGroupName, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IRedisOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Gets all Redis caches in the specified subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// - public static void BeginDelete(this IRedisOperations operations, string resourceGroupName, string name) + public static IPage List(this IRedisOperations operations) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).BeginDeleteAsync(resourceGroupName, name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Deletes a redis cache. This operation takes a while to complete. + /// Gets all Redis caches in the specified subscription. /// /// /// The operations group for this extension method. /// - /// - /// The name of the resource group. - /// - /// - /// The name of the redis cache. - /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginDeleteAsync(this IRedisOperations operations, string resourceGroupName, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IRedisOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets a redis cache (resource description). + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The operations group for this extension method. @@ -289,15 +265,16 @@ public static void BeginDelete(this IRedisOperations operations, string resource /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// - public static RedisResource Get(this IRedisOperations operations, string resourceGroupName, string name) + public static RedisAccessKeys ListKeys(this IRedisOperations operations, string resourceGroupName, string name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).GetAsync(resourceGroupName, name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListKeysAsync(resourceGroupName, name).GetAwaiter().GetResult(); } /// - /// Gets a redis cache (resource description). + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The operations group for this extension method. @@ -306,21 +283,22 @@ public static RedisResource Get(this IRedisOperations operations, string resourc /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IRedisOperations operations, string resourceGroupName, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ListKeysAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets all redis caches in a resource group. + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The operations group for this extension method. @@ -328,13 +306,20 @@ public static RedisResource Get(this IRedisOperations operations, string resourc /// /// The name of the resource group. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IRedisOperations operations, string resourceGroupName) + /// + /// The name of the Redis cache. + /// + /// + /// Specifies which key to regenerate. + /// + public static RedisAccessKeys RegenerateKey(this IRedisOperations operations, string resourceGroupName, string name, RedisRegenerateKeyParameters parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.RegenerateKeyAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Gets all redis caches in a resource group. + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. /// /// /// The operations group for this extension method. @@ -342,48 +327,26 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this /// /// The name of the resource group. /// - /// - /// The cancellation token. - /// - public static async Task> ListByResourceGroupAsync(this IRedisOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets all redis caches in the specified subscription. - /// - /// - /// The operations group for this extension method. + /// + /// The name of the Redis cache. /// - public static Microsoft.Rest.Azure.IPage List(this IRedisOperations operations) - { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Gets all redis caches in the specified subscription. - /// - /// - /// The operations group for this extension method. + /// + /// Specifies which key to regenerate. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IRedisOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task RegenerateKeyAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Retrieve a redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. /// /// /// The operations group for this extension method. @@ -392,16 +355,19 @@ public static Microsoft.Rest.Azure.IPage List(this IRedisOperatio /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// - public static RedisAccessKeys ListKeys(this IRedisOperations operations, string resourceGroupName, string name) + /// + /// Specifies which Redis node(s) to reboot. + /// + public static RedisForceRebootResponse ForceReboot(this IRedisOperations operations, string resourceGroupName, string name, RedisRebootParameters parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ListKeysAsync(resourceGroupName, name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ForceRebootAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Retrieve a redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. /// /// /// The operations group for this extension method. @@ -410,22 +376,24 @@ public static RedisAccessKeys ListKeys(this IRedisOperations operations, string /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListKeysAsync(this IRedisOperations operations, string resourceGroupName, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ForceRebootAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisRebootParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ForceRebootWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Regenerate redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Import data into Redis cache. /// /// /// The operations group for this extension method. @@ -434,19 +402,18 @@ public static RedisAccessKeys ListKeys(this IRedisOperations operations, string /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which key to reset. + /// Parameters for Redis import operation. /// - public static RedisAccessKeys RegenerateKey(this IRedisOperations operations, string resourceGroupName, string name, RedisRegenerateKeyParameters parameters) + public static void ImportData(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).RegenerateKeyAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.ImportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Regenerate redis cache's access keys. This operation requires write - /// permission to the cache resource. + /// Import data into Redis cache. /// /// /// The operations group for this extension method. @@ -455,25 +422,21 @@ public static RedisAccessKeys RegenerateKey(this IRedisOperations operations, st /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which key to reset. + /// Parameters for Redis import operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task RegenerateKeyAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisRegenerateKeyParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ImportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.ImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Reboot specified redis node(s). This operation requires write permission - /// to the cache resource. There can be potential data loss. + /// Export data from the redis cache to blobs in a container. /// /// /// The operations group for this extension method. @@ -482,19 +445,18 @@ public static RedisAccessKeys RegenerateKey(this IRedisOperations operations, st /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which redis node(s) to reboot. + /// Parameters for Redis export operation. /// - public static void ForceReboot(this IRedisOperations operations, string resourceGroupName, string name, RedisRebootParameters parameters) + public static void ExportData(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ForceRebootAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.ExportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Reboot specified redis node(s). This operation requires write permission - /// to the cache resource. There can be potential data loss. + /// Export data from the redis cache to blobs in a container. /// /// /// The operations group for this extension method. @@ -503,21 +465,22 @@ public static void ForceReboot(this IRedisOperations operations, string resource /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Specifies which redis node(s) to reboot. + /// Parameters for Redis export operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ForceRebootAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisRebootParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ExportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ForceRebootWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.ExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Import data into redis cache. + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. /// /// /// The operations group for this extension method. @@ -526,18 +489,19 @@ public static void ForceReboot(this IRedisOperations operations, string resource /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis import operation. + /// Parameters supplied to the Create Redis operation. /// - public static void ImportData(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters) + public static RedisResource BeginCreate(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ImportDataAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Import data into redis cache. + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. /// /// /// The operations group for this extension method. @@ -546,21 +510,24 @@ public static void ImportData(this IRedisOperations operations, string resourceG /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis import operation. + /// Parameters supplied to the Create Redis operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ImportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Import data into redis cache. + /// Deletes a Redis cache. /// /// /// The operations group for this extension method. @@ -569,18 +536,15 @@ public static void ImportData(this IRedisOperations operations, string resourceG /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters for redis import operation. + /// The name of the Redis cache. /// - public static void BeginImportData(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters) + public static void BeginDelete(this IRedisOperations operations, string resourceGroupName, string name) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).BeginImportDataAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginDeleteAsync(resourceGroupName, name).GetAwaiter().GetResult(); } /// - /// Import data into redis cache. + /// Deletes a Redis cache. /// /// /// The operations group for this extension method. @@ -589,21 +553,18 @@ public static void BeginImportData(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. - /// - /// - /// Parameters for redis import operation. + /// The name of the Redis cache. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginImportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginDeleteAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Import data into redis cache. + /// Import data into Redis cache. /// /// /// The operations group for this extension method. @@ -612,18 +573,18 @@ public static void BeginImportData(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. + /// Parameters for Redis import operation. /// - public static void ExportData(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters) + public static void BeginImportData(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ExportDataAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginImportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Import data into redis cache. + /// Import data into Redis cache. /// /// /// The operations group for this extension method. @@ -632,21 +593,21 @@ public static void ExportData(this IRedisOperations operations, string resourceG /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. + /// Parameters for Redis import operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ExportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginImportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Import data into redis cache. + /// Export data from the redis cache to blobs in a container. /// /// /// The operations group for this extension method. @@ -655,18 +616,18 @@ public static void ExportData(this IRedisOperations operations, string resourceG /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. + /// Parameters for Redis export operation. /// public static void BeginExportData(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).BeginExportDataAsync(resourceGroupName, name, parameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginExportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); } /// - /// Import data into redis cache. + /// Export data from the redis cache to blobs in a container. /// /// /// The operations group for this extension method. @@ -675,21 +636,21 @@ public static void BeginExportData(this IRedisOperations operations, string reso /// The name of the resource group. /// /// - /// The name of the redis cache. + /// The name of the Redis cache. /// /// - /// Parameters for redis export operation. + /// Parameters for Redis export operation. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginExportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginExportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets all redis caches in a resource group. + /// Lists all Redis caches in a resource group. /// /// /// The operations group for this extension method. @@ -697,13 +658,13 @@ public static void BeginExportData(this IRedisOperations operations, string reso /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IRedisOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IRedisOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets all redis caches in a resource group. + /// Lists all Redis caches in a resource group. /// /// /// The operations group for this extension method. @@ -714,7 +675,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext( /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IRedisOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IRedisOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -723,7 +684,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext( } /// - /// Gets all redis caches in the specified subscription. + /// Gets all Redis caches in the specified subscription. /// /// /// The operations group for this extension method. @@ -731,13 +692,13 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext( /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this IRedisOperations operations, string nextPageLink) + public static IPage ListNext(this IRedisOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRedisOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets all redis caches in the specified subscription. + /// Gets all Redis caches in the specified subscription. /// /// /// The operations group for this extension method. @@ -748,7 +709,7 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IRedisOper /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IRedisOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListNextAsync(this IRedisOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs b/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs index 66595297462b..500b8e64edc8 100644 --- a/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs +++ b/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs @@ -5,15 +5,15 @@ using System.Resources; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Microsoft Azure Redis Cache Management Library")] -[assembly: AssemblyDescription("Provides Microsoft Azure redis cache management operations.")] +//[assembly: AssemblyTitle("Microsoft Azure Redis Cache Management Library")] +//[assembly: AssemblyDescription("Provides Microsoft Azure redis cache management operations.")] -[assembly: AssemblyVersion("4.0.0.0")] -[assembly: AssemblyFileVersion("4.3.0.0")] +//[assembly: AssemblyVersion("4.0.0.0")] +//[assembly: AssemblyFileVersion("4.3.0.0")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Microsoft")] -[assembly: AssemblyProduct("Microsoft Azure .NET SDK")] +//[assembly: AssemblyConfiguration("")] +//[assembly: AssemblyCompany("Microsoft")] +//[assembly: AssemblyProduct("Microsoft Azure .NET SDK")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs b/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs index 5a4a18f4aa31..d39ffcd018e1 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs @@ -8,11 +8,11 @@ // 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("AzureRedisCache.Tests")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyProduct("AzureRedisCache.Tests")] -[assembly: AssemblyCompany("Microsoft Corporation")] +//[assembly: AssemblyTitle("AzureRedisCache.Tests")] +//[assembly: AssemblyDescription("")] +//[assembly: AssemblyConfiguration("")] +//[assembly: AssemblyProduct("AzureRedisCache.Tests")] +//[assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -35,5 +35,5 @@ // 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")] +//[assembly: AssemblyVersion("1.0.0.0")] +//[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/SDKs/RedisCache/RedisCache.Tests/RedisCache.Tests.csproj b/src/SDKs/RedisCache/RedisCache.Tests/RedisCache.Tests.csproj index e534792c2e67..70a624098a7c 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/RedisCache.Tests.csproj +++ b/src/SDKs/RedisCache/RedisCache.Tests/RedisCache.Tests.csproj @@ -9,6 +9,9 @@ netcoreapp1.1 + + + diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/BeginCreateFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/BeginCreateFunctionalTests.cs index 22e5b49681de..93624933bbec 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/BeginCreateFunctionalTests.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/BeginCreateFunctionalTests.cs @@ -19,15 +19,16 @@ public void BeginCreateFunctionalTest() { var _redisCacheManagementHelper = new RedisCacheManagementHelper(this, context); _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); - var resourceGroupName = "redisCacheCreateRG"; - var redisCacheName = "sunnybegincreate-1"; - var location = "Southeast Asia"; + + var resourceGroupName = TestUtilities.GenerateName("RedisBegin"); + var redisCacheName = TestUtilities.GenerateName("RedisBegin"); + var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); - _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, location); + _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisCacheManagementHelper.Location); RedisResource response = _client.Redis.BeginCreate(resourceGroupName, redisCacheName, parameters: new RedisCreateParameters { - Location = location, + Location = RedisCacheManagementHelper.Location, Sku = new Sku() { Name = SkuName.Premium, diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs index 4b7ec078016c..1471612638d4 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/CreateUpdateDeleteFunctionalTests.cs @@ -26,8 +26,7 @@ public CreateUpdateDeleteFunctionalTests(TestsFixture data) fixture = data; } - /* - [Fact(Skip = "Missing cleanup.json file")] + [Fact] public void CreateUpdateDeleteTest() { using (var context = MockContext.Start(this.GetType().FullName)) @@ -37,7 +36,7 @@ public void CreateUpdateDeleteTest() var responseCreate = _client.Redis.Create(resourceGroupName: fixture.ResourceGroupName, name: fixture.RedisCacheName, parameters: new RedisCreateParameters { - Location = fixture.Location, + Location = RedisCacheManagementHelper.Location, Sku = new Sku() { Name = SkuName.Basic, @@ -47,7 +46,7 @@ public void CreateUpdateDeleteTest() }); Assert.Contains(fixture.RedisCacheName, responseCreate.Id); - Assert.Equal(fixture.Location, responseCreate.Location); + Assert.Equal(RedisCacheManagementHelper.Location, responseCreate.Location); Assert.Equal(fixture.RedisCacheName, responseCreate.Name); Assert.Equal("Microsoft.Cache/Redis", responseCreate.Type); @@ -77,7 +76,7 @@ public void CreateUpdateDeleteTest() }); Assert.Contains(fixture.RedisCacheName, responseUpdate.Id); - Assert.Equal(fixture.Location, responseUpdate.Location); + Assert.Equal(RedisCacheManagementHelper.Location, responseUpdate.Location); Assert.Equal(fixture.RedisCacheName, responseUpdate.Name); Assert.Equal("Microsoft.Cache/Redis", responseUpdate.Type); @@ -94,6 +93,5 @@ public void CreateUpdateDeleteTest() _client.Redis.Delete(resourceGroupName: fixture.ResourceGroupName, name: fixture.RedisCacheName); } } - */ } } diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/FirewallFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/FirewallFunctionalTests.cs new file mode 100644 index 000000000000..aeac7f89d7db --- /dev/null +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/FirewallFunctionalTests.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. + +using System.Linq; +using AzureRedisCache.Tests.ScenarioTests; +using Microsoft.Azure.Management.Redis; +using Microsoft.Azure.Management.Redis.Models; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace AzureRedisCache.Tests +{ + public class FirewallFunctionalTests : TestBase + { + [Fact] + public void FirewallFunctionalTest() + { + using (var context = MockContext.Start(this.GetType().FullName)) + { + var _redisCacheManagementHelper = new RedisCacheManagementHelper(this, context); + _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); + + var resourceGroupName = TestUtilities.GenerateName("RedisFirewall"); + var redisCacheName = TestUtilities.GenerateName("RedisFirewall"); + + var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); + _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisCacheManagementHelper.Location); + _client.Redis.Create(resourceGroupName, redisCacheName, + parameters: new RedisCreateParameters + { + Location = RedisCacheManagementHelper.Location, + Sku = new Sku() + { + Name = SkuName.Premium, + Family = SkuFamily.P, + Capacity = 1 + } + }); + + // First try to get cache and verify that it is premium cache + RedisResource response = _client.Redis.Get(resourceGroupName, redisCacheName); + Assert.Contains(redisCacheName, response.Id); + Assert.Equal(redisCacheName, response.Name); + Assert.Equal("succeeded", response.ProvisioningState, ignoreCase: true); + Assert.Equal(SkuName.Premium, response.Sku.Name); + Assert.Equal(SkuFamily.P, response.Sku.Family); + + // Set firewall rule for 10.0.0.0 to 10.0.0.32 + RedisFirewallRule ruleOne = _client.FirewallRules.CreateOrUpdate(resourceGroupName, redisCacheName, "RuleOne", new RedisFirewallRuleCreateParameters + { + StartIP = "10.0.0.0", + EndIP = "10.0.0.32" + }); + Assert.Equal("10.0.0.0", ruleOne.StartIP); + Assert.Equal("10.0.0.32", ruleOne.EndIP); + + // Set firewall rule for 10.0.0.64 to 10.0.0.128 + RedisFirewallRule ruleTwo = _client.FirewallRules.CreateOrUpdate(resourceGroupName, redisCacheName, "RuleTwo", new RedisFirewallRuleCreateParameters + { + StartIP = "10.0.0.64", + EndIP = "10.0.0.128" + }); + Assert.Equal("10.0.0.64", ruleTwo.StartIP); + Assert.Equal("10.0.0.128", ruleTwo.EndIP); + + // Get test + ruleOne = _client.FirewallRules.Get(resourceGroupName, redisCacheName, "RuleOne"); + Assert.Equal("10.0.0.0", ruleOne.StartIP); + Assert.Equal("10.0.0.32", ruleOne.EndIP); + + ruleTwo = _client.FirewallRules.Get(resourceGroupName, redisCacheName, "RuleTwo"); + Assert.Equal("10.0.0.64", ruleTwo.StartIP); + Assert.Equal("10.0.0.128", ruleTwo.EndIP); + + // List test + IPage rules = _client.FirewallRules.ListByRedisResource(resourceGroupName, redisCacheName); + Assert.Equal(2, rules.Count()); + + // Delete + _client.FirewallRules.Delete(resourceGroupName, redisCacheName, "RuleTwo"); + + rules = _client.FirewallRules.ListByRedisResource(resourceGroupName, redisCacheName); + Assert.Single(rules); + Assert.Equal("10.0.0.0", rules.First().StartIP); + Assert.Equal("10.0.0.32", rules.First().EndIP); + + } + } + } +} diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GeoReplicationFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GeoReplicationFunctionalTests.cs new file mode 100644 index 000000000000..e7625e939080 --- /dev/null +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GeoReplicationFunctionalTests.cs @@ -0,0 +1,145 @@ +// 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.Linq; +using AzureRedisCache.Tests.ScenarioTests; +using Microsoft.Azure.Management.Redis; +using Microsoft.Azure.Management.Redis.Models; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace AzureRedisCache.Tests +{ + public class GeoReplicationFunctionalTests : TestBase + { + [Fact] + public void GeoReplicationFunctionalTest() + { + using (var context = MockContext.Start(this.GetType().FullName)) + { + var resourceGroupName = TestUtilities.GenerateName("RedisGeo"); + var redisCacheName1 = TestUtilities.GenerateName("RedisGeo1"); + var redisCacheName2 = TestUtilities.GenerateName("RedisGeo2"); + + var _redisCacheManagementHelper = new RedisCacheManagementHelper(this, context); + _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); + _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisCacheManagementHelper.Location); + + var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); + // Create cache in ncus + RedisResource ncResponse = _client.Redis.BeginCreate(resourceGroupName, redisCacheName1, + parameters: new RedisCreateParameters + { + Location = RedisCacheManagementHelper.Location, + Sku = new Sku() + { + Name = SkuName.Premium, + Family = SkuFamily.P, + Capacity = 1 + } + }); + + Assert.Contains(redisCacheName1, ncResponse.Id); + Assert.Equal(redisCacheName1, ncResponse.Name); + Assert.Equal("creating", ncResponse.ProvisioningState, ignoreCase: true); + Assert.Equal(SkuName.Premium, ncResponse.Sku.Name); + Assert.Equal(SkuFamily.P, ncResponse.Sku.Family); + + // Create cache in scus + RedisResource scResponse = _client.Redis.BeginCreate(resourceGroupName, redisCacheName2, + parameters: new RedisCreateParameters + { + Location = RedisCacheManagementHelper.SecondaryLocation, + Sku = new Sku() + { + Name = SkuName.Premium, + Family = SkuFamily.P, + Capacity = 1 + } + }); + + Assert.Contains(redisCacheName2, scResponse.Id); + Assert.Equal(redisCacheName2, scResponse.Name); + Assert.Equal("creating", scResponse.ProvisioningState, ignoreCase: true); + Assert.Equal(SkuName.Premium, scResponse.Sku.Name); + Assert.Equal(SkuFamily.P, scResponse.Sku.Family); + + // Wait for both cache creation to comeplete + for (int i = 0; i < 120; i++) + { + ncResponse = _client.Redis.Get(resourceGroupName, redisCacheName1); + scResponse = _client.Redis.Get(resourceGroupName, redisCacheName2); + if ("succeeded".Equals(ncResponse.ProvisioningState, StringComparison.OrdinalIgnoreCase) && + "succeeded".Equals(scResponse.ProvisioningState, StringComparison.OrdinalIgnoreCase)) + { + break; + } + TestUtilities.Wait(new TimeSpan(0, 0, 30)); + } + + // Fail if any of 2 cache is not created successfully + Assert.Equal("succeeded", ncResponse.ProvisioningState, ignoreCase: true); + Assert.Equal("succeeded", scResponse.ProvisioningState, ignoreCase: true); + + // Set up replication link + RedisLinkedServerWithProperties linkServerWithProperties = _client.LinkedServer.Create(resourceGroupName, redisCacheName1, redisCacheName2, new RedisLinkedServerCreateParameters + { + LinkedRedisCacheId = scResponse.Id, + LinkedRedisCacheLocation = RedisCacheManagementHelper.SecondaryLocation, + ServerRole = ReplicationRole.Secondary + }); + + Assert.Equal(redisCacheName2, linkServerWithProperties.Name); + Assert.Equal(scResponse.Id, linkServerWithProperties.LinkedRedisCacheId); + Assert.Equal(RedisCacheManagementHelper.SecondaryLocation, linkServerWithProperties.LinkedRedisCacheLocation); + Assert.Equal(ReplicationRole.Secondary, linkServerWithProperties.ServerRole); + Assert.Equal("succeeded", linkServerWithProperties.ProvisioningState, ignoreCase: true); + + // test get response from primary + RedisLinkedServerWithProperties primaryLinkProperties = _client.LinkedServer.Get(resourceGroupName, redisCacheName1, redisCacheName2); + Assert.Equal(scResponse.Id, primaryLinkProperties.LinkedRedisCacheId); + Assert.Equal(RedisCacheManagementHelper.SecondaryLocation, primaryLinkProperties.LinkedRedisCacheLocation); + Assert.Equal(ReplicationRole.Secondary, primaryLinkProperties.ServerRole); + + // test list response from primary + IPage allPrimaryLinkProperties = _client.LinkedServer.List(resourceGroupName, redisCacheName1); + Assert.Single(allPrimaryLinkProperties); + + // test get response from secondary + RedisLinkedServerWithProperties secondaryLinkProperties = _client.LinkedServer.Get(resourceGroupName, redisCacheName2, redisCacheName1); + Assert.Equal(ncResponse.Id, secondaryLinkProperties.LinkedRedisCacheId); + Assert.Equal(RedisCacheManagementHelper.Location, secondaryLinkProperties.LinkedRedisCacheLocation); + Assert.Equal(ReplicationRole.Primary, secondaryLinkProperties.ServerRole); + + // test list response from secondary + IPage allSecondaryLinkProperties = _client.LinkedServer.List(resourceGroupName, redisCacheName2); + Assert.Single(allSecondaryLinkProperties); + + // Delete link on primary + _client.LinkedServer.Delete(resourceGroupName, redisCacheName1, redisCacheName2); + + // links should disappear in 5 min + IPage afterDeletePrimaryLinkProperties = null; + IPage afterDeleteSecondaryLinkProperties = null; + for (int i = 0; i < 10; i++) + { + TestUtilities.Wait(new TimeSpan(0, 0, 30)); + afterDeletePrimaryLinkProperties = _client.LinkedServer.List(resourceGroupName, redisCacheName1); + afterDeleteSecondaryLinkProperties = _client.LinkedServer.List(resourceGroupName, redisCacheName2); + if (afterDeletePrimaryLinkProperties.Count() == 0 && afterDeleteSecondaryLinkProperties.Count() == 0) break; + } + Assert.NotNull(afterDeletePrimaryLinkProperties); + Assert.Empty(afterDeletePrimaryLinkProperties); + Assert.NotNull(afterDeleteSecondaryLinkProperties); + Assert.Empty(afterDeleteSecondaryLinkProperties); + + // Clean up both caches and delete resource group + _client.Redis.Delete(resourceGroupName: resourceGroupName, name: redisCacheName1); + _client.Redis.Delete(resourceGroupName: resourceGroupName, name: redisCacheName2); + _redisCacheManagementHelper.DeleteResourceGroup(resourceGroupName); + } + } + } +} diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GetListKeysFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GetListKeysFunctionalTests.cs index b432db27a6ee..3d1299f5d511 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GetListKeysFunctionalTests.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/GetListKeysFunctionalTests.cs @@ -31,8 +31,7 @@ public GetListKeysFunctionalTests(TestsFixtureWithCacheCreate data) HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); } - /* - [Fact(Skip = "Missing cleanup.json file")] + [Fact] public void GetTest() { using (var context = MockContext.Start(this.GetType().FullName)) @@ -53,7 +52,7 @@ public void GetTest() } } - [Fact(Skip = "Missing cleanup.json file")] + [Fact] public void ListTest() { using (var context = MockContext.Start(this.GetType().FullName)) @@ -86,7 +85,7 @@ public void ListTest() } } - [Fact(Skip = "Missing cleanup.json file")] + [Fact] public void ListWithoutResourceGroupTest() { using (var context = MockContext.Start(this.GetType().FullName)) @@ -119,7 +118,7 @@ public void ListWithoutResourceGroupTest() } } - [Fact(Skip = "Missing cleanup.json file")] + [Fact] public void ListKeysTest() { using (var context = MockContext.Start(this.GetType().FullName)) @@ -131,10 +130,9 @@ public void ListKeysTest() } } - [Fact(Skip = "Missing cleanup.json file")] + [Fact] public void RegenerateKeyTest() { - HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); using (var context = MockContext.Start(this.GetType().FullName)) { var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); @@ -147,8 +145,6 @@ public void RegenerateKeyTest() } } - */ - private static string GetSessionsDirectoryPath() { string executingAssemblyPath = typeof(AzureRedisCache.Tests.GetListKeysFunctionalTests).GetTypeInfo().Assembly.Location; diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/PatchSchedulesFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/PatchSchedulesFunctionalTests.cs index 24d0ade4882f..99f7a1fdbf9a 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/PatchSchedulesFunctionalTests.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/PatchSchedulesFunctionalTests.cs @@ -22,15 +22,16 @@ public void PatchSchedules_PutGetDelete() { var _redisCacheManagementHelper = new RedisCacheManagementHelper(this, context); _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); - var resourceGroupName = TestUtilities.GenerateName("redisCacheRGsunnyjapan"); - var redisCacheName = TestUtilities.GenerateName("sunny-scheduling-dv2"); - var location = "Japan West"; + + var resourceGroupName = TestUtilities.GenerateName("RedisSchedules"); + var redisCacheName = TestUtilities.GenerateName("RedisSchedules"); + var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); - _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, location); + _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisCacheManagementHelper.Location); _client.Redis.Create(resourceGroupName, redisCacheName, parameters: new RedisCreateParameters { - Location = location, + Location = RedisCacheManagementHelper.Location, Sku = new Sku() { Name = SkuName.Premium, @@ -75,8 +76,9 @@ public void PatchSchedules_PutGetDelete() redisCacheName); _client.PatchSchedules.Delete(resourceGroupName, redisCacheName); - var schedules = _client.PatchSchedules.Get(resourceGroupName, redisCacheName); - Assert.Null(schedules); + + var ex = Assert.Throws(() => _client.PatchSchedules.Get(resourceGroupName, redisCacheName)); + Assert.Contains("There are no patch schedules found for redis cache", ex.Message); } } diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RebootFunctionalTests.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RebootFunctionalTests.cs index ae759573001b..18c275e82df8 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RebootFunctionalTests.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RebootFunctionalTests.cs @@ -19,15 +19,16 @@ public void RebootBothNodesTest() { var _redisCacheManagementHelper = new RedisCacheManagementHelper(this, context); _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); - var resourceGroupName = TestUtilities.GenerateName("redisCacheRG"); - var redisCacheName = TestUtilities.GenerateName("sunnyprimary"); - var location = "westus"; + + var resourceGroupName = TestUtilities.GenerateName("RedisReboot"); + var redisCacheName = TestUtilities.GenerateName("RedisReboot"); + var _client = RedisCacheManagementTestUtilities.GetRedisManagementClient(this, context); - _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, location); + _redisCacheManagementHelper.TryCreateResourceGroup(resourceGroupName, RedisCacheManagementHelper.Location); _client.Redis.Create(resourceGroupName, redisCacheName, parameters: new RedisCreateParameters { - Location = location, + Location = RedisCacheManagementHelper.Location, Sku = new Sku() { Name = SkuName.Premium, diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementHelper.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementHelper.cs index 5a89140b339e..b5f3d5ae563f 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementHelper.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementHelper.cs @@ -1,26 +1,21 @@ // 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 AzureRedisCache.Tests.ScenarioTests; using Microsoft.Azure.Management.Redis; using Microsoft.Azure.Management.Redis.Models; -using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Management.Resources.Models; -using Microsoft.Azure.Test; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net; -using System.Net.Http; -using System.Text; -using System.Threading.Tasks; -using Xunit; namespace AzureRedisCache.Tests { public class RedisCacheManagementHelper { + public static string Location = "West Central US"; + public static string SecondaryLocation = "East US 2 EUAP"; + private ResourceManagementClient _client; private MockContext _context; private TestBase _testBase; @@ -64,7 +59,7 @@ public void TryCreatingCache(string resourceGroupName, string cacheName, string parameters: new RedisCreateParameters { Location = location, - Sku = new Sku() + Sku = new Microsoft.Azure.Management.Redis.Models.Sku() { Name = SkuName.Basic, Family = SkuFamily.C, diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementTestUtilities.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementTestUtilities.cs index aa9e7679df51..c3a1370d9a1f 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementTestUtilities.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/RedisCacheManagementTestUtilities.cs @@ -2,13 +2,8 @@ // Licensed under the MIT License. See License.txt in the project root for license information. using Microsoft.Azure.Management.Redis; -using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.ResourceManager; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net.Http; -using System.Threading.Tasks; namespace AzureRedisCache.Tests.ScenarioTests { diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixture.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixture.cs index e42d9d17d912..2f322452557b 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixture.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixture.cs @@ -19,9 +19,8 @@ public class TestsFixture : TestBase, IDisposable public string ResourceGroupName { set; get; } public string RedisCacheName { set; get; } - public string Location = "North Central US"; private RedisCacheManagementHelper _redisCacheManagementHelper; - private MockContext _context; + private MockContext _context = null; public TestsFixture() { @@ -32,9 +31,9 @@ public TestsFixture() _redisCacheManagementHelper = new RedisCacheManagementHelper(this, _context); _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); - ResourceGroupName = TestUtilities.GenerateName("redisCacheRG"); - RedisCacheName = TestUtilities.GenerateName("RCName"); - _redisCacheManagementHelper.TryCreateResourceGroup(ResourceGroupName, Location); + ResourceGroupName = TestUtilities.GenerateName("RedisCreateUpdate"); + RedisCacheName = TestUtilities.GenerateName("RedisCreateUpdate"); + _redisCacheManagementHelper.TryCreateResourceGroup(ResourceGroupName, RedisCacheManagementHelper.Location); } catch (Exception) { @@ -55,8 +54,15 @@ public void Dispose() private void Cleanup() { - HttpMockServer.Initialize(this.GetType().FullName, ".cleanup"); - _context.Dispose(); + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + HttpMockServer.Initialize(this.GetType().FullName, ".cleanup"); + } + if (_context != null) + { + _context.Dispose(); + _context = null; + } } } } diff --git a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixtureWithCacheCreate.cs b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixtureWithCacheCreate.cs index dc24a65e61ce..2a64e210eb9b 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixtureWithCacheCreate.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/ScenarioTests/TestsFixtureWithCacheCreate.cs @@ -19,10 +19,10 @@ namespace AzureRedisCache.Tests public class TestsFixtureWithCacheCreate : TestBase, IDisposable { public string ResourceGroupName { set; get; } - public string RedisCacheName = "hydracache1"; - public string Location = "North Central US"; + public string RedisCacheName { set; get; } + private RedisCacheManagementHelper _redisCacheManagementHelper; - private MockContext _context; + private MockContext _context=null; public TestsFixtureWithCacheCreate() { @@ -34,9 +34,11 @@ public TestsFixtureWithCacheCreate() _redisCacheManagementHelper = new RedisCacheManagementHelper(this, _context); _redisCacheManagementHelper.TryRegisterSubscriptionForResource(); - ResourceGroupName = TestUtilities.GenerateName("hydra1"); - _redisCacheManagementHelper.TryCreateResourceGroup(ResourceGroupName, Location); - _redisCacheManagementHelper.TryCreatingCache(ResourceGroupName, RedisCacheName, Location); + ResourceGroupName = TestUtilities.GenerateName("RedisGetList"); + RedisCacheName = TestUtilities.GenerateName("RedisGetList"); + + _redisCacheManagementHelper.TryCreateResourceGroup(ResourceGroupName, RedisCacheManagementHelper.Location); + _redisCacheManagementHelper.TryCreatingCache(ResourceGroupName, RedisCacheName, RedisCacheManagementHelper.Location); } catch (Exception) { @@ -56,9 +58,16 @@ public void Dispose() private void Cleanup() { - HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); - HttpMockServer.Initialize(this.GetType().FullName, ".cleanup"); - _context.Dispose(); + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); + HttpMockServer.Initialize(this.GetType().FullName, ".cleanup"); + } + if (_context != null) + { + _context.Dispose(); + _context = null; + } } private static string GetSessionsDirectoryPath() diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.BeginCreateFunctionalTests/BeginCreateFunctionalTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.BeginCreateFunctionalTests/BeginCreateFunctionalTest.json index 87ecfd2334f6..d365f62a8b2a 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.BeginCreateFunctionalTests/BeginCreateFunctionalTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.BeginCreateFunctionalTests/BeginCreateFunctionalTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/providers/Microsoft.Cache/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1ad4fbb-122c-4f2e-99b1-435ceaa98881" + "fcf98ba9-9a8a-4c6e-a46a-bf6d3610608c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 ],\r\n \"apiVersions\": [\r\n \"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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\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 ],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +29,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:02:40 GMT" + "Wed, 06 Dec 2017 00:12:58 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +44,13 @@ "1199" ], "x-ms-request-id": [ - "d614d933-67c8-4bcb-be3f-b38f351bc12e" + "3a42e21d-010f-4cf5-9bb6-7d4287834157" ], "x-ms-correlation-request-id": [ - "d614d933-67c8-4bcb-be3f-b38f351bc12e" + "3a42e21d-010f-4cf5-9bb6-7d4287834157" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020240Z:d614d933-67c8-4bcb-be3f-b38f351bc12e" + "WESTUS2:20171206T001258Z:3a42e21d-010f-4cf5-9bb6-7d4287834157" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,23 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/providers/Microsoft.Cache?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "423a7800-5753-4c56-b26f-3d770b1ae54c" + "9c6fa35d-53cc-4f23-8ce3-771b966f1fe0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/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 ],\r\n \"apiVersions\": [\r\n \"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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\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 ],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +87,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:02:40 GMT" + "Wed, 06 Dec 2017 00:12:58 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-request-id": [ - "5c6015de-41e9-40ef-a2f2-3ee5aaa5a950" + "44287144-6cb5-4109-8c11-f1cc5c1f0ca5" ], "x-ms-correlation-request-id": [ - "5c6015de-41e9-40ef-a2f2-3ee5aaa5a950" + "44287144-6cb5-4109-8c11-f1cc5c1f0ca5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020240Z:5c6015de-41e9-40ef-a2f2-3ee5aaa5a950" + "WESTUS2:20171206T001258Z:44287144-6cb5-4109-8c11-f1cc5c1f0ca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,32 +114,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourcegroups/redisCacheCreateRG?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisBegin5506?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW41NTA2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "37" ], "x-ms-client-request-id": [ - "068e800b-c06e-446d-85e7-c1af49bbf30e" + "19f3bf2e-cf93-4663-b05f-28cb566d73df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG\",\r\n \"name\": \"redisCacheCreateRG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506\",\r\n \"name\": \"RedisBegin5506\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -148,7 +151,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:02:40 GMT" + "Wed, 06 Dec 2017 00:13:11 GMT" ], "Pragma": [ "no-cache" @@ -157,13 +160,13 @@ "1198" ], "x-ms-request-id": [ - "6113bd12-b2fb-4804-b17f-fa10ad5585b9" + "c88ad2de-9c19-4eff-bebd-7eb655b7f320" ], "x-ms-correlation-request-id": [ - "6113bd12-b2fb-4804-b17f-fa10ad5585b9" + "c88ad2de-9c19-4eff-bebd-7eb655b7f320" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020241Z:6113bd12-b2fb-4804-b17f-fa10ad5585b9" + "WESTUS2:20171206T001312Z:c88ad2de-9c19-4eff-bebd-7eb655b7f320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +175,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourcegroups/redisCacheCreateRG?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisBegin5506?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW41NTA2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28b432f6-942a-459f-bd38-3fa52b96818c" + "55c6b61a-f5e0-4387-b819-90576a129317" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG\",\r\n \"name\": \"redisCacheCreateRG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506\",\r\n \"name\": \"RedisBegin5506\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +203,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:02:40 GMT" + "Wed, 06 Dec 2017 00:13:11 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +212,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-request-id": [ - "bbaa5a1d-62d8-48db-bfa3-a683681cd1f0" + "684212e9-f175-4bd8-8cc6-b27ae40cb827" ], "x-ms-correlation-request-id": [ - "bbaa5a1d-62d8-48db-bfa3-a683681cd1f0" + "684212e9-f175-4bd8-8cc6-b27ae40cb827" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020241Z:bbaa5a1d-62d8-48db-bfa3-a683681cd1f0" + "WESTUS2:20171206T001312Z:684212e9-f175-4bd8-8cc6-b27ae40cb827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,32 +230,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "151" + "152" ], "x-ms-client-request-id": [ - "be993b66-ba17-4c82-aac5-51a25682b098" + "115d75b6-2904-4deb-8db2-52bd021d1ee4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"CEAu3aQeF21LLWgJWSS1Py1bP8qRgIqhVoudnZsYnyw=\",\r\n \"secondaryKey\": \"4sdEH91x1JgX/2159pOl1/5AzkKu4elXqakIFmOTkF0=\"\r\n },\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"HaGY+6W5mR7iU2hpkjw5jCdyveMhpH3Ejy/tqT9BqB8=\",\r\n \"secondaryKey\": \"SrQQUNbIOQw00PJupZPp58JE09IejSESxhMYLM9eVxI=\"\r\n },\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "704" + "745" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,56 +267,59 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:02:44 GMT" + "Wed, 06 Dec 2017 00:13:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/redis/RedisBegin8144?api-version=2017-10-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1dc9131d-dfd5-449e-9c4a-3005dacefff4" + "09a85fe8-9ed1-42fd-8d77-18779ed6f16b" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "8a741b1b-ee99-47e6-b6f5-e1a92e728a93" + "64c2482a-83f9-4884-b2d4-13023cfbb7b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020244Z:8a741b1b-ee99-47e6-b6f5-e1a92e728a93" + "WESTUS2:20171206T001314Z:64c2482a-83f9-4884-b2d4-13023cfbb7b4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1319313b-8236-486f-b64c-5bb61d565996" + "f2df32b9-c6a8-4c4e-ad6a-cf38a846688f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +331,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:02:44 GMT" + "Wed, 06 Dec 2017 00:13:13 GMT" ], "Pragma": [ "no-cache" @@ -340,44 +346,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6efe84a3-a25e-4dcc-a3dc-29a1a5ae722c" + "49948cd0-0d17-480e-819a-6391e470d245" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14998" ], "x-ms-correlation-request-id": [ - "7c548413-cfbf-4fbc-8567-f61ebb979bca" + "1b6936d4-bd8d-4c6c-bf75-bf76b4190792" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020244Z:7c548413-cfbf-4fbc-8567-f61ebb979bca" + "WESTUS2:20171206T001314Z:1b6936d4-bd8d-4c6c-bf75-bf76b4190792" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aeffca03-4bdb-45db-b72c-5fbde3a19c00" + "4c788e42-a3ce-442b-8969-b9bf47cb8905" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -389,7 +398,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:03:14 GMT" + "Wed, 06 Dec 2017 00:13:43 GMT" ], "Pragma": [ "no-cache" @@ -404,44 +413,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f71dc88-425d-408a-b33a-0c7c4276d23d" + "14806986-7610-46ab-a481-feb17113ebde" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14997" ], "x-ms-correlation-request-id": [ - "0fec36e8-114e-4432-9671-35109947a9ac" + "1b5e866d-67af-4650-8f36-bd07a17bb2a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020315Z:0fec36e8-114e-4432-9671-35109947a9ac" + "WESTUS2:20171206T001344Z:1b5e866d-67af-4650-8f36-bd07a17bb2a1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed5f9793-4dbe-41d5-a73a-81e55414fd4b" + "1382ac12-820f-43b4-8110-68d9a8475789" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -453,7 +465,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:03:44 GMT" + "Wed, 06 Dec 2017 00:14:14 GMT" ], "Pragma": [ "no-cache" @@ -468,44 +480,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "80ec8d67-579d-48b8-8358-473c22f41f80" + "df8dbb78-9dc8-4d60-956c-a161b217a61e" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14996" ], "x-ms-correlation-request-id": [ - "0651f047-b826-44c9-83f2-81b86d166f46" + "15333a14-faf8-487b-a2dc-207abed089ab" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020345Z:0651f047-b826-44c9-83f2-81b86d166f46" + "WESTUS2:20171206T001414Z:15333a14-faf8-487b-a2dc-207abed089ab" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca772d41-7a91-4a4b-91bc-68b47a5966e1" + "e2e1b4f2-c4e5-43cc-98e2-49981201db9e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -517,7 +532,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:04:15 GMT" + "Wed, 06 Dec 2017 00:14:44 GMT" ], "Pragma": [ "no-cache" @@ -532,44 +547,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e75bfd5e-7a16-402b-9335-6b1c6ca66845" + "1ce1782e-00c9-450c-9efc-f97dd6b15e89" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14995" ], "x-ms-correlation-request-id": [ - "2f778acd-cb50-4640-a59c-a417f64d1466" + "341295a9-ffbb-4080-996b-11a040d335a1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020415Z:2f778acd-cb50-4640-a59c-a417f64d1466" + "WESTUS2:20171206T001444Z:341295a9-ffbb-4080-996b-11a040d335a1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c056f365-3dd6-4568-a57c-4d1383512320" + "5b0db05c-b758-4ac5-8510-af3161c877ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -581,7 +599,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:04:45 GMT" + "Wed, 06 Dec 2017 00:15:14 GMT" ], "Pragma": [ "no-cache" @@ -596,44 +614,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc570d71-9ad4-4341-a472-00392ab9e83f" + "2921ea43-9634-48c5-9f68-d7ffd7fe1301" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14994" ], "x-ms-correlation-request-id": [ - "0df4e576-9412-4871-b520-9f8f9e5c548e" + "4b24bc28-cdaf-495e-a4d8-786a380c2e78" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020446Z:0df4e576-9412-4871-b520-9f8f9e5c548e" + "WESTUS2:20171206T001514Z:4b24bc28-cdaf-495e-a4d8-786a380c2e78" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8c17f5f-5170-4a10-b6fd-459190181ca4" + "a5066a9b-d186-4eb4-83d6-62e53e17f8dc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -645,7 +666,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:05:15 GMT" + "Wed, 06 Dec 2017 00:15:44 GMT" ], "Pragma": [ "no-cache" @@ -660,44 +681,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8dfae3f7-3c75-45b7-871e-6d39168c021b" + "78fcf0a4-74d4-4b27-aea5-1588e8770c0a" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14993" ], "x-ms-correlation-request-id": [ - "59622ba5-74ca-4592-b2f3-b31d10bf6653" + "b5e99611-1997-44f4-87bc-fc8901eabeba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020516Z:59622ba5-74ca-4592-b2f3-b31d10bf6653" + "WESTUS2:20171206T001545Z:b5e99611-1997-44f4-87bc-fc8901eabeba" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8832c975-a981-4ea7-921d-3017a2aff4ad" + "3e401b2a-510d-467a-afa3-015eded8c04e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -709,7 +733,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:05:46 GMT" + "Wed, 06 Dec 2017 00:16:14 GMT" ], "Pragma": [ "no-cache" @@ -724,44 +748,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1251f1dd-315c-4bc2-8c34-859087c7b466" + "e74a4a51-c666-4448-9074-8c55421aca52" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14992" ], "x-ms-correlation-request-id": [ - "96f24dc0-d5cc-430b-bc13-252fed3fab88" + "a0d69a2e-3718-424e-a4c6-a2d961d0c784" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020546Z:96f24dc0-d5cc-430b-bc13-252fed3fab88" + "WESTUS2:20171206T001615Z:a0d69a2e-3718-424e-a4c6-a2d961d0c784" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5da968d2-1e17-4e09-93ab-67101963977b" + "bf034ffb-fa2b-428c-a8a1-3b6e68020b42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -773,7 +800,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:06:16 GMT" + "Wed, 06 Dec 2017 00:16:45 GMT" ], "Pragma": [ "no-cache" @@ -788,44 +815,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "18cc8598-2e31-40d6-94b4-c8444597970e" + "a337618c-3b4d-49d2-a968-324a29277ddf" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14991" ], "x-ms-correlation-request-id": [ - "c43cf06f-acaf-496d-90c9-8af23fabb7d2" + "f9fd74fa-8fff-4591-be37-4b68f0445f49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020616Z:c43cf06f-acaf-496d-90c9-8af23fabb7d2" + "WESTUS2:20171206T001645Z:f9fd74fa-8fff-4591-be37-4b68f0445f49" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b262dd9-8f2d-41a8-b75b-e6deab391924" + "b0e69d7b-ff93-4791-9bbc-a06c369ffb71" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -837,7 +867,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:06:46 GMT" + "Wed, 06 Dec 2017 00:17:15 GMT" ], "Pragma": [ "no-cache" @@ -852,44 +882,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3e2881c3-1b22-427e-9c70-380715981739" + "cee18f97-8381-4457-a781-90a95e8e481d" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14990" ], "x-ms-correlation-request-id": [ - "ddf4c7ab-c44d-4770-85f1-f99932aa7344" + "392e89bb-2286-4392-b163-75c725c569a5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020647Z:ddf4c7ab-c44d-4770-85f1-f99932aa7344" + "WESTUS2:20171206T001715Z:392e89bb-2286-4392-b163-75c725c569a5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06ca1139-78ee-4b56-8c71-867ac4c2e780" + "a2b113bc-3d6c-43aa-9c05-e0dd5951827e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -901,7 +934,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:07:16 GMT" + "Wed, 06 Dec 2017 00:17:45 GMT" ], "Pragma": [ "no-cache" @@ -916,44 +949,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6f3d774-9b4d-4785-9388-324cb21a8617" + "a205b922-b51b-40dc-8a5f-52ce8c849f88" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14989" ], "x-ms-correlation-request-id": [ - "ab56c64b-b4df-4109-8367-f9de994ee7b2" + "65382705-8c94-4a01-8533-31ea425d875a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020717Z:ab56c64b-b4df-4109-8367-f9de994ee7b2" + "WESTUS2:20171206T001745Z:65382705-8c94-4a01-8533-31ea425d875a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a4e9219-1f3d-4c24-a9f4-48cd6eb484b5" + "c52d66f5-8f35-4628-9c43-ac71ac483eeb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -965,7 +1001,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:07:46 GMT" + "Wed, 06 Dec 2017 00:18:17 GMT" ], "Pragma": [ "no-cache" @@ -980,44 +1016,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d61c23b1-8d9a-4b79-be67-07ae604bdf69" + "d229da5c-a22e-4142-bda7-12a36ad8ddd5" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14988" ], "x-ms-correlation-request-id": [ - "cd055106-decd-480a-b2b0-8492a3ad34ab" + "7cfd5b0d-b6dd-46dd-81c6-b5748cdd37bf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020747Z:cd055106-decd-480a-b2b0-8492a3ad34ab" + "WESTUS2:20171206T001818Z:7cfd5b0d-b6dd-46dd-81c6-b5748cdd37bf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c4cfa39-9c48-441b-b4ac-fb24d8f2d588" + "e145f8b0-2d34-47ba-a5d2-7dfef622a1f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1029,7 +1068,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:08:17 GMT" + "Wed, 06 Dec 2017 00:18:48 GMT" ], "Pragma": [ "no-cache" @@ -1044,44 +1083,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f5fa921-204a-4200-a59c-c4d6c7261dc2" + "e7e6abf2-f320-4386-bc1d-aae694b1b994" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14987" ], "x-ms-correlation-request-id": [ - "24e61ca1-e41f-4671-8438-570a6821350d" + "740243c4-b7a7-4888-8874-7c167a744658" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020817Z:24e61ca1-e41f-4671-8438-570a6821350d" + "WESTUS2:20171206T001848Z:740243c4-b7a7-4888-8874-7c167a744658" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21f74847-f505-4bd5-b0d7-81a52c9d5117" + "818f10e1-2b55-45cb-9a1e-bc5cb7881cd5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1093,7 +1135,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:08:48 GMT" + "Wed, 06 Dec 2017 00:19:17 GMT" ], "Pragma": [ "no-cache" @@ -1108,44 +1150,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a96e2d5e-4ddd-4c90-a070-6324d0b83827" + "13cd861a-a28e-42d8-8fe6-da21fea694ba" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14986" ], "x-ms-correlation-request-id": [ - "a3ae77ec-d42f-4afd-880a-f125a2a69f02" + "9690b6b1-251d-4ad8-9a23-7249420e96ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020848Z:a3ae77ec-d42f-4afd-880a-f125a2a69f02" + "WESTUS2:20171206T001918Z:9690b6b1-251d-4ad8-9a23-7249420e96ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b29fbb7-d3f8-4191-b7c1-06730c315aea" + "96d54313-d48a-4a92-91ba-5383767dd371" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1157,7 +1202,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:09:17 GMT" + "Wed, 06 Dec 2017 00:19:47 GMT" ], "Pragma": [ "no-cache" @@ -1172,44 +1217,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a038f8dd-b0da-4a1c-aeee-1e094b873c7b" + "01e2a057-621c-4cf7-8a80-159acc6d40b1" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14985" ], "x-ms-correlation-request-id": [ - "6ab85f74-62d3-446f-b87f-8f74f8bd6ad0" + "76a9f5ed-0b8a-4478-be7d-989bd0f3aaf2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020918Z:6ab85f74-62d3-446f-b87f-8f74f8bd6ad0" + "WESTUS2:20171206T001948Z:76a9f5ed-0b8a-4478-be7d-989bd0f3aaf2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "607e996f-eff4-4eb1-9e8f-0515f2214852" + "c334d52a-eaf6-4085-bd81-d6e47685cff2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1\",\r\n \"location\": \"Southeast Asia\",\r\n \"name\": \"sunnybegincreate-1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://seasia4429011924.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://seasia4429011924.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://seasia4429011924.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://seasia4429011924.queue.core.windows.net/\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnybegincreate-1.cache.icbbvt.windows-int.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1221,7 +1269,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:09:50 GMT" + "Wed, 06 Dec 2017 00:20:18 GMT" ], "Pragma": [ "no-cache" @@ -1236,41 +1284,245 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "66a9185b-6b62-41e7-bd9e-1daaf293ad9d" + "df8a6ab8-6e40-4458-9211-f36195325e6e" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14984" ], "x-ms-correlation-request-id": [ - "83b7c198-b506-4c19-a18e-153618609f1b" + "84dea94e-2ab9-4572-807a-31a11d95d225" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020950Z:83b7c198-b506-4c19-a18e-153618609f1b" + "WESTUS2:20171206T002018Z:84dea94e-2ab9-4572-807a-31a11d95d225" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourceGroups/redisCacheCreateRG/providers/Microsoft.Cache/Redis/sunnybegincreate-1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRy9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL3N1bm55YmVnaW5jcmVhdGUtMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5cfca5f-362b-42f9-9e14-22dc569d7404" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 06 Dec 2017 00:20:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9f93fa40-a75b-495e-8f8f-14dcfef45555" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "1ecff65c-4a6c-462b-b269-9000548fa45c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171206T002048Z:1ecff65c-4a6c-462b-b269-9000548fa45c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d88f0336-e9c2-485a-973e-08d4e7a3b073" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 06 Dec 2017 00:21:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a743b005-4ee0-4d3d-9a23-2fcc03613a56" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "7a410df8-9a03-4d19-983f-fc10b01191ea" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171206T002118Z:7a410df8-9a03-4d19-983f-fc10b01191ea" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd114c97-b778-4f95-bf39-22ccd32fb710" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisBegin8144\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus3796167551.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus3796167551.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisBegin8144.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 06 Dec 2017 00:21:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1eea7709-f400-4a4c-9ff7-028895d0a755" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "017b2063-b906-4c05-b486-d2157b259741" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171206T002149Z:017b2063-b906-4c05-b486-d2157b259741" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisBegin5506/providers/Microsoft.Cache/Redis/RedisBegin8144?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQmVnaW41NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNCZWdpbjgxNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ee9fd59-df7e-4382-8754-55bbfb29272d" + "29eb1bb3-c266-4e57-a8d0-ed1610fdd96a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.2.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, "ResponseBody": "", @@ -1285,7 +1537,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:09:50 GMT" + "Wed, 06 Dec 2017 00:21:50 GMT" ], "Pragma": [ "no-cache" @@ -1294,41 +1546,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d7314447-c609-45cb-b50e-d03eab4dee95" + "805d9d3e-32e7-4d83-aa40-dc7ee85f60b2" ], "x-rp-server-mvid": [ - "0802bd53-3baa-4686-9b0b-c20be13d204a" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "34f66b67-0d63-4bed-8801-87f1e6c5af3d" + "3e258139-0c1b-4d9f-8420-37199c3f67d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020951Z:34f66b67-0d63-4bed-8801-87f1e6c5af3d" + "WESTUS2:20171206T002151Z:3e258139-0c1b-4d9f-8420-37199c3f67d3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/resourcegroups/redisCacheCreateRG?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVDcmVhdGVSRz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisBegin5506?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzQmVnaW41NTA2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "352c188b-d815-4c12-aa11-01f6f2ce3107" + "89f80c04-2b71-4e88-8dc9-531a6a2bfa6d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, "ResponseBody": "", @@ -1343,13 +1598,13 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:09:51 GMT" + "Wed, 06 Dec 2017 00:21:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0NBQ0hFQ1JFQVRFUkctU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTUwNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1358,13 +1613,13 @@ "1199" ], "x-ms-request-id": [ - "1cebd53c-ecf8-448e-bd24-8ab24170b8bc" + "36ab956f-d5ba-49b3-a74f-7c4e6315f3a4" ], "x-ms-correlation-request-id": [ - "1cebd53c-ecf8-448e-bd24-8ab24170b8bc" + "36ab956f-d5ba-49b3-a74f-7c4e6315f3a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T020951Z:1cebd53c-ecf8-448e-bd24-8ab24170b8bc" + "WESTUS2:20171206T002151Z:36ab956f-d5ba-49b3-a74f-7c4e6315f3a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1373,14 +1628,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0NBQ0hFQ1JFQVRFUkctU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwTkJRMGhGUTFKRlFWUkZVa2N0VTA5VlZFaEZRVk5VUVZOSlFTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTUwNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTlRVd05pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, "ResponseBody": "", @@ -1395,28 +1650,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:10:20 GMT" + "Wed, 06 Dec 2017 00:22:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0NBQ0hFQ1JFQVRFUkctU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTUwNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14994" ], "x-ms-request-id": [ - "72a357d8-44d7-4eba-8745-2852b5d79545" + "c70c8d4b-4d47-472a-a555-1802a0ed2cbb" ], "x-ms-correlation-request-id": [ - "72a357d8-44d7-4eba-8745-2852b5d79545" + "c70c8d4b-4d47-472a-a555-1802a0ed2cbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T021021Z:72a357d8-44d7-4eba-8745-2852b5d79545" + "WESTUS2:20171206T002207Z:c70c8d4b-4d47-472a-a555-1802a0ed2cbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1425,14 +1680,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/19b520e4-39a7-4fac-b1da-d940f2d39a38/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0NBQ0hFQ1JFQVRFUkctU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTliNTIwZTQtMzlhNy00ZmFjLWIxZGEtZDk0MGYyZDM5YTM4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwTkJRMGhGUTFKRlFWUkZVa2N0VTA5VlZFaEZRVk5VUVZOSlFTSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hsWVhOMFlYTnBZU0o5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTUwNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTlRVd05pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, "ResponseBody": "", @@ -1447,22 +1702,74 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 02:10:51 GMT" + "Wed, 06 Dec 2017 00:22:21 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTUwNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14993" + ], + "x-ms-request-id": [ + "2c1fca5e-e9ff-4c1a-86b3-ad11cc78607e" + ], + "x-ms-correlation-request-id": [ + "2c1fca5e-e9ff-4c1a-86b3-ad11cc78607e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171206T002222Z:2c1fca5e-e9ff-4c1a-86b3-ad11cc78607e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0JFR0lONTUwNi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwSkZSMGxPTlRVd05pMVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 06 Dec 2017 00:22:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" ], "x-ms-request-id": [ - "df6a5cb8-f34f-46b2-9470-e27ea63b5879" + "697c8b1b-2b0e-4c9d-b048-9b5a69d25f6f" ], "x-ms-correlation-request-id": [ - "df6a5cb8-f34f-46b2-9470-e27ea63b5879" + "697c8b1b-2b0e-4c9d-b048-9b5a69d25f6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161110T021051Z:df6a5cb8-f34f-46b2-9470-e27ea63b5879" + "WESTUS2:20171206T002237Z:697c8b1b-2b0e-4c9d-b048-9b5a69d25f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1471,8 +1778,13 @@ "StatusCode": 200 } ], - "Names": {}, + "Names": { + "BeginCreateFunctionalTest": [ + "RedisBegin5506", + "RedisBegin8144" + ] + }, "Variables": { - "SubscriptionId": "19b520e4-39a7-4fac-b1da-d940f2d39a38" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json index 004c2d7c9170..624195251140 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.CreateUpdateDeleteFunctionalTests/CreateUpdateDeleteTest.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "151" + "150" ], "x-ms-client-request-id": [ - "795594c7-55ac-4b73-aa77-c691827018e5" + "e758335b-8c14-478a-9b16-e8f5771c7b96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"1xbOjALDv/YafCjVfIqYEXPXmZ3kud5TESILmSDQKpk=\",\r\n \"secondaryKey\": \"ghHm+MrEk296KFbmRBTNd/g/Re7MfDHfnAeO0k/WU+g=\"\r\n },\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"e77DIxNC9kfKnAH0imMFNILFHSCW6BinwFGvHvpOj5U=\",\r\n \"secondaryKey\": \"NVzdWjgyhvoOjETlvj5JN+vK8qTXjqGUGYxpfguB8cM=\"\r\n },\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "668" + "765" ], "Content-Type": [ "application/json; charset=utf-8" @@ -38,50 +38,53 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:21:46 GMT" + "Tue, 05 Dec 2017 22:51:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c607c44a-bed4-452d-adec-512efc5ba251" + "379629a4-a01c-4de6-9077-2ed5246d00db" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "2c5a5aa1-2bdc-4f58-8f45-1c043112b2b5" + "e092fbff-31ce-48cc-8102-ee892031721a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012147Z:2c5a5aa1-2bdc-4f58-8f45-1c043112b2b5" + "WESTUS2:20171205T225104Z:e092fbff-31ce-48cc-8102-ee892031721a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -93,7 +96,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:22:17 GMT" + "Tue, 05 Dec 2017 22:51:33 GMT" ], "Pragma": [ "no-cache" @@ -108,38 +111,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "df5081ba-cbff-42c4-9036-4ef060462e15" + "f21eede4-eac9-4bde-88d7-f53060d42e99" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14999" ], "x-ms-correlation-request-id": [ - "3f6518ff-a9e6-4c0b-9eb3-ecb45698862e" + "eb892384-4f43-45b9-a689-6c3dd04c8495" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012217Z:3f6518ff-a9e6-4c0b-9eb3-ecb45698862e" + "WESTUS2:20171205T225134Z:eb892384-4f43-45b9-a689-6c3dd04c8495" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +157,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:22:47 GMT" + "Tue, 05 Dec 2017 22:52:03 GMT" ], "Pragma": [ "no-cache" @@ -166,38 +172,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "815cd1df-97b7-4f72-b5ea-297226e59e91" + "fff56e3f-d30e-49ea-bad8-729ef5e35158" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14998" ], "x-ms-correlation-request-id": [ - "1d087e68-9b12-452b-a220-86d52e1e1571" + "72aec25d-0b6f-4279-9b74-9f6f86f5fea4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012248Z:1d087e68-9b12-452b-a220-86d52e1e1571" + "WESTUS2:20171205T225204Z:72aec25d-0b6f-4279-9b74-9f6f86f5fea4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -209,7 +218,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:23:17 GMT" + "Tue, 05 Dec 2017 22:52:34 GMT" ], "Pragma": [ "no-cache" @@ -224,38 +233,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5d4fce44-147c-446a-ac35-c17d239fccd2" + "624d39ba-6116-4877-a940-429563e1d6fc" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14997" ], "x-ms-correlation-request-id": [ - "93f50456-198a-4f39-bb81-7972c2bdab89" + "496e8dc1-1799-44cb-9954-d7e3b57a7a3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012318Z:93f50456-198a-4f39-bb81-7972c2bdab89" + "WESTUS2:20171205T225234Z:496e8dc1-1799-44cb-9954-d7e3b57a7a3a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -267,7 +279,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:23:47 GMT" + "Tue, 05 Dec 2017 22:53:04 GMT" ], "Pragma": [ "no-cache" @@ -282,38 +294,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "11b52493-c641-40db-abaf-43988722223d" + "3671f47f-03ca-49ba-9e11-558fe721f7f1" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14996" ], "x-ms-correlation-request-id": [ - "ce23c703-5638-4474-bc20-fbe1b7353d5c" + "bfc5e58b-dfd8-4497-a67f-1d0489d0aad1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012348Z:ce23c703-5638-4474-bc20-fbe1b7353d5c" + "WESTUS2:20171205T225304Z:bfc5e58b-dfd8-4497-a67f-1d0489d0aad1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -325,7 +340,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:24:18 GMT" + "Tue, 05 Dec 2017 22:53:34 GMT" ], "Pragma": [ "no-cache" @@ -340,38 +355,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "84b03e47-22a8-472b-9c84-310734e1f4ec" + "3df30012-7ffa-40f9-a732-d960bc7e2611" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14995" ], "x-ms-correlation-request-id": [ - "b428b034-0d2f-4f10-8495-2c33765baba2" + "882a8d9f-8170-436f-89d8-3e056f2a8191" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012418Z:b428b034-0d2f-4f10-8495-2c33765baba2" + "WESTUS2:20171205T225334Z:882a8d9f-8170-436f-89d8-3e056f2a8191" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -383,7 +401,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:24:48 GMT" + "Tue, 05 Dec 2017 22:54:04 GMT" ], "Pragma": [ "no-cache" @@ -398,38 +416,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c3ffea13-cdaf-47e7-a036-b69822608a56" + "63232248-dad6-4997-821f-a115f6307904" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14994" ], "x-ms-correlation-request-id": [ - "3f0baf4d-3e58-4ae4-8395-f7e419fd7b9f" + "dae4e699-758c-4d04-ab9b-d6fe229cc5ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012448Z:3f0baf4d-3e58-4ae4-8395-f7e419fd7b9f" + "WESTUS2:20171205T225404Z:dae4e699-758c-4d04-ab9b-d6fe229cc5ac" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -441,7 +462,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:25:17 GMT" + "Tue, 05 Dec 2017 22:54:34 GMT" ], "Pragma": [ "no-cache" @@ -456,38 +477,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7e01c8b3-3c67-4384-bcd7-eabdab708bbb" + "7836e177-0545-464b-b9ea-18c5208529ea" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14993" ], "x-ms-correlation-request-id": [ - "62360b9c-2ba4-45cf-9c13-5ff30d418ffa" + "514bf811-9e9f-463a-b248-e76e4417d0d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012518Z:62360b9c-2ba4-45cf-9c13-5ff30d418ffa" + "WESTUS2:20171205T225434Z:514bf811-9e9f-463a-b248-e76e4417d0d9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -499,7 +523,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:25:48 GMT" + "Tue, 05 Dec 2017 22:55:05 GMT" ], "Pragma": [ "no-cache" @@ -514,38 +538,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7f995ecb-a679-42f5-abf6-f6098ae9d55d" + "30849c80-1d7b-4118-8513-a2e77b2e8fb9" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14992" ], "x-ms-correlation-request-id": [ - "1633d1e6-da17-4528-8b42-8c7a9e11898d" + "43d63747-b340-4db3-b2a7-ab0e886c1224" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012548Z:1633d1e6-da17-4528-8b42-8c7a9e11898d" + "WESTUS2:20171205T225505Z:43d63747-b340-4db3-b2a7-ab0e886c1224" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -557,7 +584,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:26:18 GMT" + "Tue, 05 Dec 2017 22:55:34 GMT" ], "Pragma": [ "no-cache" @@ -572,38 +599,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "25885bd5-9e52-4288-89ef-8252636e78c4" + "fe584a47-9237-41f6-877c-91369cd1289a" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14991" ], "x-ms-correlation-request-id": [ - "ae87d114-c4a1-4096-bac6-21086741ebdd" + "910058d4-72b8-4570-abfa-56d2cdf31b2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012618Z:ae87d114-c4a1-4096-bac6-21086741ebdd" + "WESTUS2:20171205T225535Z:910058d4-72b8-4570-abfa-56d2cdf31b2b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -615,7 +645,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:26:47 GMT" + "Tue, 05 Dec 2017 22:56:04 GMT" ], "Pragma": [ "no-cache" @@ -630,38 +660,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fee6a50a-663f-4778-b217-fcab6fab7323" + "0de4337b-3504-4419-bec5-1c9fff28c00f" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14990" ], "x-ms-correlation-request-id": [ - "7ad158d5-f161-4370-8fec-2d0193618327" + "8728077b-ae3c-462b-a18c-cfd385248f6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012648Z:7ad158d5-f161-4370-8fec-2d0193618327" + "WESTUS2:20171205T225605Z:8728077b-ae3c-462b-a18c-cfd385248f6f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -673,7 +706,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:27:18 GMT" + "Tue, 05 Dec 2017 22:56:35 GMT" ], "Pragma": [ "no-cache" @@ -688,38 +721,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ed331d80-01e6-4cd4-81bb-fcaa63847df7" + "54c1c3dd-0aff-4fbb-93db-859140fdca13" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14989" ], "x-ms-correlation-request-id": [ - "57e29996-f863-4132-b711-71ac06ca8ad7" + "fc5b66ff-5ff1-41d4-906f-6cf56f209d0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012718Z:57e29996-f863-4132-b711-71ac06ca8ad7" + "WESTUS2:20171205T225635Z:fc5b66ff-5ff1-41d4-906f-6cf56f209d0b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -731,7 +767,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:27:48 GMT" + "Tue, 05 Dec 2017 22:57:05 GMT" ], "Pragma": [ "no-cache" @@ -746,38 +782,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6bcc9bc4-d6f2-4b34-b08d-c8c4ef6ebaf5" + "00cde827-b3c2-452d-9fd7-2935d9d7ad22" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14987" ], "x-ms-correlation-request-id": [ - "f9c8db8a-5787-4761-a5a4-e51498cc47c4" + "68ed3449-0323-4340-bcc4-d607f9cdcc02" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012749Z:f9c8db8a-5787-4761-a5a4-e51498cc47c4" + "WESTUS2:20171205T225706Z:68ed3449-0323-4340-bcc4-d607f9cdcc02" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +828,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:28:18 GMT" + "Tue, 05 Dec 2017 22:57:35 GMT" ], "Pragma": [ "no-cache" @@ -804,38 +843,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f2a1b92-7e57-447e-ad14-94c9d73731b2" + "6969ef39-e277-4841-96fc-3bc4a19342bf" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14986" ], "x-ms-correlation-request-id": [ - "1a013950-380d-4e62-96f8-3000a08a006a" + "ddf4da58-2c19-491c-966e-f01f358e83f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012819Z:1a013950-380d-4e62-96f8-3000a08a006a" + "WESTUS2:20171205T225736Z:ddf4da58-2c19-491c-966e-f01f358e83f8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -847,7 +889,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:28:48 GMT" + "Tue, 05 Dec 2017 22:58:06 GMT" ], "Pragma": [ "no-cache" @@ -862,38 +904,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "19ff3eed-1e8b-440a-9b38-e1647b9105e4" + "cc7302f8-3dc3-48e8-a568-0f4d5476c74e" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14985" ], "x-ms-correlation-request-id": [ - "b638143a-8b91-44f8-9bad-2b7606532a22" + "c6755a96-2548-4180-9a10-fa7d4976a9e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012849Z:b638143a-8b91-44f8-9bad-2b7606532a22" + "WESTUS2:20171205T225806Z:c6755a96-2548-4180-9a10-fa7d4976a9e8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -905,7 +950,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:29:18 GMT" + "Tue, 05 Dec 2017 22:58:36 GMT" ], "Pragma": [ "no-cache" @@ -920,38 +965,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f5b4ec0b-ecf6-4642-ade6-71bdf4b4edef" + "3ee5f0e8-89dd-4e5c-93d4-84bb02dd8db2" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14984" ], "x-ms-correlation-request-id": [ - "65efa58d-6517-4468-9b53-4119dc0583ab" + "551bd042-3c54-4a99-b9ac-b2706ea3b4ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012919Z:65efa58d-6517-4468-9b53-4119dc0583ab" + "WESTUS2:20171205T225836Z:551bd042-3c54-4a99-b9ac-b2706ea3b4ce" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -963,7 +1011,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:29:48 GMT" + "Tue, 05 Dec 2017 22:59:06 GMT" ], "Pragma": [ "no-cache" @@ -978,38 +1026,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a966ec5-dc88-4672-b123-42c24cd22d5f" + "25c819fb-b70d-46d0-994f-35d3a466e3d6" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14983" ], "x-ms-correlation-request-id": [ - "1a3b164e-f3e1-43f5-90d2-ac6a3e23d14e" + "23b68eee-9ffb-4293-8fbc-71db8ccc3c6f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012949Z:1a3b164e-f3e1-43f5-90d2-ac6a3e23d14e" + "WESTUS2:20171205T225906Z:23b68eee-9ffb-4293-8fbc-71db8ccc3c6f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1021,7 +1072,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:30:19 GMT" + "Tue, 05 Dec 2017 22:59:36 GMT" ], "Pragma": [ "no-cache" @@ -1036,38 +1087,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a67829c2-82dc-4e09-96fa-8f5358271957" + "67e74275-e837-4b94-b3d5-43ae4abf6dc3" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14982" ], "x-ms-correlation-request-id": [ - "6d68794d-3180-401f-8424-7f892eac4fcf" + "884fa215-d8f3-40ba-8253-a931f5d09da4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013019Z:6d68794d-3180-401f-8424-7f892eac4fcf" + "WESTUS2:20171205T225936Z:884fa215-d8f3-40ba-8253-a931f5d09da4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1079,7 +1133,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:30:48 GMT" + "Tue, 05 Dec 2017 23:00:06 GMT" ], "Pragma": [ "no-cache" @@ -1094,38 +1148,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dafed447-5624-4651-bf18-3ee9bcfb0007" + "321a4fac-c115-44fc-99c5-1b0ba6ebf6af" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14981" ], "x-ms-correlation-request-id": [ - "70dde20e-ed12-4039-86e7-3df46f5ded76" + "8b63e74c-e6da-4817-ad28-78180ad545b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013049Z:70dde20e-ed12-4039-86e7-3df46f5ded76" + "WESTUS2:20171205T230007Z:8b63e74c-e6da-4817-ad28-78180ad545b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1137,7 +1194,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:31:19 GMT" + "Tue, 05 Dec 2017 23:00:36 GMT" ], "Pragma": [ "no-cache" @@ -1152,38 +1209,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81f7f863-4d5d-409b-9422-cf072511df57" + "3eefdcb7-051e-42fd-8b4e-d5441fc4d404" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14980" ], "x-ms-correlation-request-id": [ - "75e8d5a5-5ff7-4c5e-b280-1c6c73c6bbee" + "7b592d3f-33b2-4d4e-928d-70d03020e9f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013119Z:75e8d5a5-5ff7-4c5e-b280-1c6c73c6bbee" + "WESTUS2:20171205T230037Z:7b592d3f-33b2-4d4e-928d-70d03020e9f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1195,7 +1255,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:31:49 GMT" + "Tue, 05 Dec 2017 23:01:06 GMT" ], "Pragma": [ "no-cache" @@ -1210,38 +1270,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3edaf4bc-4147-4df7-a4db-b68de2d1481c" + "ba18a9ef-9a22-4eac-b61b-32a2802e7ca2" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14979" ], "x-ms-correlation-request-id": [ - "77a394eb-415e-4d72-b520-87c10ce02dba" + "060196e6-c344-4daa-87a2-e28c7696fa8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013149Z:77a394eb-415e-4d72-b520-87c10ce02dba" + "WESTUS2:20171205T230107Z:060196e6-c344-4daa-87a2-e28c7696fa8d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1253,7 +1316,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:32:19 GMT" + "Tue, 05 Dec 2017 23:01:37 GMT" ], "Pragma": [ "no-cache" @@ -1268,38 +1331,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "74b051cd-53e2-47aa-95d0-f9cea2ee4eb3" + "5d216272-32f9-4c81-8822-b2eb62f3136c" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14978" ], "x-ms-correlation-request-id": [ - "fcd51966-e310-42fb-8903-25e240ab5c78" + "3714fa04-af45-45ca-a9a2-9a200992a793" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013219Z:fcd51966-e310-42fb-8903-25e240ab5c78" + "WESTUS2:20171205T230137Z:3714fa04-af45-45ca-a9a2-9a200992a793" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1311,7 +1377,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:32:49 GMT" + "Tue, 05 Dec 2017 23:02:07 GMT" ], "Pragma": [ "no-cache" @@ -1326,38 +1392,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f20cfde4-99d2-4f5d-a44d-1a4c03b16e93" + "2a6f729d-080f-468e-adfc-d01963295bb5" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14977" ], "x-ms-correlation-request-id": [ - "1f89fc5f-22a5-4499-be2d-0b32de35c9cf" + "a026de54-e371-441d-81f4-5137cb4193c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013250Z:1f89fc5f-22a5-4499-be2d-0b32de35c9cf" + "WESTUS2:20171205T230207Z:a026de54-e371-441d-81f4-5137cb4193c1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1369,7 +1438,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:33:19 GMT" + "Tue, 05 Dec 2017 23:02:37 GMT" ], "Pragma": [ "no-cache" @@ -1384,38 +1453,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1ed70897-5d8e-49cb-a583-4756c0da5d78" + "a9b40f10-4e4b-4050-aa53-049d63887dfb" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14976" ], "x-ms-correlation-request-id": [ - "1d9e627d-c018-42ac-b258-81d5c4a63d8f" + "14c167b0-fc77-47d4-a0d4-a4e2d3b2b867" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013320Z:1d9e627d-c018-42ac-b258-81d5c4a63d8f" + "WESTUS2:20171205T230237Z:14c167b0-fc77-47d4-a0d4-a4e2d3b2b867" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1427,7 +1499,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:33:49 GMT" + "Tue, 05 Dec 2017 23:03:07 GMT" ], "Pragma": [ "no-cache" @@ -1442,38 +1514,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "673d3bab-0fa5-40ca-b207-e4c5977c7a88" + "a7875141-2a81-4860-9236-d1e237635082" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14975" ], "x-ms-correlation-request-id": [ - "145ee1c8-f8af-4bc9-9138-110056e864e6" + "617a883f-5028-4d57-af64-51ec2fbe98c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013350Z:145ee1c8-f8af-4bc9-9138-110056e864e6" + "WESTUS2:20171205T230307Z:617a883f-5028-4d57-af64-51ec2fbe98c1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1485,7 +1560,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:34:19 GMT" + "Tue, 05 Dec 2017 23:03:37 GMT" ], "Pragma": [ "no-cache" @@ -1500,38 +1575,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "929d26e4-6b00-4bb0-9702-151289132cbf" + "3f3659ba-a54d-4065-b01d-c70067f49b26" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14974" ], "x-ms-correlation-request-id": [ - "8891281b-5d0b-46b1-947b-858b7b574eca" + "d152ca5a-ff9c-4cf3-bf35-fe69597cba99" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013420Z:8891281b-5d0b-46b1-947b-858b7b574eca" + "WESTUS2:20171205T230337Z:d152ca5a-ff9c-4cf3-bf35-fe69597cba99" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1543,7 +1621,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:34:49 GMT" + "Tue, 05 Dec 2017 23:04:07 GMT" ], "Pragma": [ "no-cache" @@ -1558,38 +1636,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7a11d0d3-511a-4eb5-93d6-a3cb6d901c41" + "7b15122b-5c83-44fa-801a-e10c84beb59a" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14973" ], "x-ms-correlation-request-id": [ - "22497170-f8a2-4c89-844a-8eed71bc0d95" + "50c18039-f1fb-467b-9e6e-20aa2a23cfd3" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013450Z:22497170-f8a2-4c89-844a-8eed71bc0d95" + "WESTUS2:20171205T230407Z:50c18039-f1fb-467b-9e6e-20aa2a23cfd3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1601,7 +1682,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:35:19 GMT" + "Tue, 05 Dec 2017 23:04:37 GMT" ], "Pragma": [ "no-cache" @@ -1616,38 +1697,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3c71c74d-3a84-4452-8519-31fa21793faf" + "dd253223-f9d0-4137-b453-2362bb506861" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14972" ], "x-ms-correlation-request-id": [ - "250c88ed-056b-4d66-94c4-47af8ccf2f43" + "516a38fc-924c-4ed0-90db-341ab8b20f3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013520Z:250c88ed-056b-4d66-94c4-47af8ccf2f43" + "WESTUS2:20171205T230438Z:516a38fc-924c-4ed0-90db-341ab8b20f3c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1659,7 +1743,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:35:50 GMT" + "Tue, 05 Dec 2017 23:05:07 GMT" ], "Pragma": [ "no-cache" @@ -1674,38 +1758,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3c530f81-9db5-4dcc-8bdb-ded38e96c5ce" + "e6a2031c-4f2a-45a7-8bfd-1b70b8893c51" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14971" ], "x-ms-correlation-request-id": [ - "9a8396ab-1485-428f-8966-dfc49fc9bf15" + "b0b3f2d1-b39a-46c4-82b6-870d69c8a20f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013550Z:9a8396ab-1485-428f-8966-dfc49fc9bf15" + "WESTUS2:20171205T230508Z:b0b3f2d1-b39a-46c4-82b6-870d69c8a20f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1717,7 +1804,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:36:21 GMT" + "Tue, 05 Dec 2017 23:05:38 GMT" ], "Pragma": [ "no-cache" @@ -1732,38 +1819,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5ce666c9-ecd6-48d9-a47a-037dde615dec" + "14c92e87-1dbb-4f0e-9791-eb0221de9d4a" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14970" ], "x-ms-correlation-request-id": [ - "f1da8259-3c37-47e9-96b0-e9d1afcb7fc3" + "76ccee71-10f3-41c8-ac31-6b3a5a604bcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013621Z:f1da8259-3c37-47e9-96b0-e9d1afcb7fc3" + "WESTUS2:20171205T230538Z:76ccee71-10f3-41c8-ac31-6b3a5a604bcf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1775,7 +1865,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:36:51 GMT" + "Tue, 05 Dec 2017 23:06:07 GMT" ], "Pragma": [ "no-cache" @@ -1790,38 +1880,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3833264c-be84-4ae7-8016-8f18fc96aa7f" + "0669a489-0c4e-4fb2-b296-a85da3e073b8" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14969" ], "x-ms-correlation-request-id": [ - "bf9a7244-c6ab-4dd6-959c-9b7ca4b9b31c" + "95ac7047-0dd7-440b-a7d3-4b2d7ee1c52b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013651Z:bf9a7244-c6ab-4dd6-959c-9b7ca4b9b31c" + "WESTUS2:20171205T230608Z:95ac7047-0dd7-440b-a7d3-4b2d7ee1c52b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1833,7 +1926,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:37:21 GMT" + "Tue, 05 Dec 2017 23:06:37 GMT" ], "Pragma": [ "no-cache" @@ -1848,38 +1941,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e463a9b9-8681-44fc-9f7a-0a1d3a2925b1" + "5137b58b-3a81-4756-a52f-f1f5adfafd97" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14968" ], "x-ms-correlation-request-id": [ - "b199404f-c1d4-4203-93d0-edfab2cbdafe" + "91ffad3d-f2c8-4392-ae32-c13055d55521" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013721Z:b199404f-c1d4-4203-93d0-edfab2cbdafe" + "WESTUS2:20171205T230638Z:91ffad3d-f2c8-4392-ae32-c13055d55521" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1891,7 +1987,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:37:51 GMT" + "Tue, 05 Dec 2017 23:07:07 GMT" ], "Pragma": [ "no-cache" @@ -1906,38 +2002,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "52aa1ef2-8e46-4c2b-99e8-89d67829b0b9" + "f84a7365-29fb-474b-b12e-994b76ac93a4" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14967" ], "x-ms-correlation-request-id": [ - "8e817d80-f6b1-480d-b5e5-9278afa02a07" + "ba1bc321-ce9e-496d-9900-c350acffe6ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013752Z:8e817d80-f6b1-480d-b5e5-9278afa02a07" + "WESTUS2:20171205T230708Z:ba1bc321-ce9e-496d-9900-c350acffe6ff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1949,7 +2048,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:38:21 GMT" + "Tue, 05 Dec 2017 23:07:38 GMT" ], "Pragma": [ "no-cache" @@ -1964,29 +2063,93 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "87c8f1fa-5c3b-4faf-8020-f3127731e4d7" + "5072f839-921a-4487-b74c-fc0da626b8c7" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14966" ], "x-ms-correlation-request-id": [ - "62d42c79-6f02-43ee-83f2-e95828a24387" + "90542ca4-bd70-4216-8621-88823b5d25e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013822Z:62d42c79-6f02-43ee-83f2-e95828a24387" + "WESTUS2:20171205T230738Z:90542ca4-bd70-4216-8621-88823b5d25e4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus2554052479.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus2554052479.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:08:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b2e04450-362e-4559-a789-4b6efd3ceca3" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "a0ee8fea-8464-43d1-ae51-61889a99f294" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T230809Z:a0ee8fea-8464-43d1-ae51-61889a99f294" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"redisConfiguration\": {\r\n \"maxmemory-policy\": \"allkeys-lru\"\r\n },\r\n \"enableNonSslPort\": true,\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1997,17 +2160,17 @@ "225" ], "x-ms-client-request-id": [ - "a2c18de0-d32c-441b-9199-4475b3e2e008" + "d7bb5e0f-d220-4596-b8d1-626f44524e69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"RCName6405\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RCName6405.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisCreateUpdate7534\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": true,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus2554052479.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus2554052479.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-policy\": \"allkeys-lru\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisCreateUpdate7534.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2019,7 +2182,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:38:22 GMT" + "Tue, 05 Dec 2017 23:08:11 GMT" ], "Pragma": [ "no-cache" @@ -2034,41 +2197,44 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "219c75e1-f454-4c2a-957d-cfb7bf25bc72" + "7a07eb69-010f-4579-bf74-6bfd3baa02f3" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "a0aa6d13-c89c-456f-9d20-55178b460abb" + "a5afa9b8-e636-421f-93ca-36d1ba5a700b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013823Z:a0aa6d13-c89c-456f-9d20-55178b460abb" + "WESTUS2:20171205T230811Z:a5afa9b8-e636-421f-93ca-36d1ba5a700b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319/providers/Microsoft.Cache/Redis/RCName6405?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTkvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SQ05hbWU2NDA1P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324/providers/Microsoft.Cache/Redis/RedisCreateUpdate7534?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL1JlZGlzQ3JlYXRlVXBkYXRlNzUzND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27917417-5d70-4481-a14d-bc2847934267" + "32ff84c2-ccfd-4857-af13-e3b07c9d3f63" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, "ResponseBody": "", @@ -2083,7 +2249,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:38:23 GMT" + "Tue, 05 Dec 2017 23:08:12 GMT" ], "Pragma": [ "no-cache" @@ -2092,22 +2258,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "74a6045f-97ea-46b0-b8d0-44bb4872d8ea" + "420a757b-cb15-40dd-ac09-9c3d7cdcdb36" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "c8b2490b-bfca-41c1-970a-564f84f05744" + "a299aca6-edf5-4191-8780-1108501777bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T013824Z:c8b2490b-bfca-41c1-970a-564f84f05744" + "WESTUS2:20171205T230812Z:a299aca6-edf5-4191-8780-1108501777bb" ] }, "StatusCode": 200 @@ -2115,6 +2284,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.FirewallFunctionalTests/FirewallFunctionalTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.FirewallFunctionalTests/FirewallFunctionalTest.json new file mode 100644 index 000000000000..c63788133a69 --- /dev/null +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.FirewallFunctionalTests/FirewallFunctionalTest.json @@ -0,0 +1,2138 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01221af7-b676-4bd7-8edb-f127acabec9a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:09:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e885ffc7-f414-467a-abb9-51d64524281b" + ], + "x-ms-correlation-request-id": [ + "e885ffc7-f414-467a-abb9-51d64524281b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T230911Z:e885ffc7-f414-467a-abb9-51d64524281b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce148ebe-f5cb-4ed9-92e9-f9e469a845c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:09:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "ec9e7d49-1a12-4a3b-b690-312e03e03b9d" + ], + "x-ms-correlation-request-id": [ + "ec9e7d49-1a12-4a3b-b690-312e03e03b9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T230911Z:ec9e7d49-1a12-4a3b-b690-312e03e03b9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisFirewall7809?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], + "x-ms-client-request-id": [ + "149c21b2-35da-4d1b-b4ac-0eb41959901e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809\",\r\n \"name\": \"RedisFirewall7809\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "194" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:09:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a1718a89-2247-4ee0-840f-0657d26b634b" + ], + "x-ms-correlation-request-id": [ + "a1718a89-2247-4ee0-840f-0657d26b634b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T230931Z:a1718a89-2247-4ee0-840f-0657d26b634b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisFirewall7809?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6376e5a-f819-4ea3-9388-bedbe8a2561a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809\",\r\n \"name\": \"RedisFirewall7809\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:09:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "7f20dc7e-bc3c-4595-ac56-a213c4c0537b" + ], + "x-ms-correlation-request-id": [ + "7f20dc7e-bc3c-4595-ac56-a213c4c0537b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T230931Z:7f20dc7e-bc3c-4595-ac56-a213c4c0537b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "152" + ], + "x-ms-client-request-id": [ + "96d6db34-35d9-415b-8625-2ac6f38a9d17" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"8rmskSoU+SVQ02LvhyZBe1Ov8Cc9JWvIodi9quElONY=\",\r\n \"secondaryKey\": \"mla4BtCawJiH4EidxI6nWfLnQL8sisyc81Ps7QgwtX4=\"\r\n },\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "757" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:09:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "276769dc-2027-4068-b40e-6a697a0967fe" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "85f9034f-bbfc-43e7-accd-061fb03ec029" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T230933Z:85f9034f-bbfc-43e7-accd-061fb03ec029" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:10:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "48a89d2b-0545-45a3-91cc-4c3c281deaac" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "c204afff-0b4d-48b7-b901-17b30f4959ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231003Z:c204afff-0b4d-48b7-b901-17b30f4959ff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:10:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1a69c031-ac0b-4ec6-9c22-81af0b42eb74" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "96bb54b1-5610-450a-9068-94cd0e107ea3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231034Z:96bb54b1-5610-450a-9068-94cd0e107ea3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:11:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6a27c447-f453-4058-b191-886974b541fc" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "bf750270-51ab-47d6-bd14-03e02e7cdaed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231104Z:bf750270-51ab-47d6-bd14-03e02e7cdaed" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:11:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d27c2a00-3d97-4608-9083-92468aeff6c3" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "513e5ff7-0055-4134-9360-89ca066629de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231134Z:513e5ff7-0055-4134-9360-89ca066629de" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:12:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "87ab7afc-ee13-421e-85d9-298370e472d4" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "42673d07-307d-4253-9c67-6d8b949d509a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231204Z:42673d07-307d-4253-9c67-6d8b949d509a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:12:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "11cdfe7b-e459-4721-b93b-58a5eb94dd70" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "f4fc8548-b0c4-46a6-9aae-37c43cf387a0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231237Z:f4fc8548-b0c4-46a6-9aae-37c43cf387a0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:13:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a376b132-b906-49cc-b6c5-1be003083751" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "f26d5498-1a03-4840-9e7b-664c7f0f4246" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231307Z:f26d5498-1a03-4840-9e7b-664c7f0f4246" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:13:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6a2e2978-52f0-453a-af10-a6a890b8b8ba" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "7f2919bd-ad87-41e1-80cd-4c0b4b5e00df" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231337Z:7f2919bd-ad87-41e1-80cd-4c0b4b5e00df" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:14:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "89188deb-5b5c-4294-bdfe-987e1b78f9f0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "24611a98-bc87-4215-8d6e-ec4d63445547" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231407Z:24611a98-bc87-4215-8d6e-ec4d63445547" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:14:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "77c2b3fc-432b-4d88-8c41-7cdb3d51acd4" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "159c7d54-72d1-46c4-9937-107dba6c8206" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231437Z:159c7d54-72d1-46c4-9937-107dba6c8206" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:15:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "adbf6a7e-daf1-494b-9999-08749dfa32fa" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "d73020de-9edb-416c-9065-46cd4f9fd0fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231507Z:d73020de-9edb-416c-9065-46cd4f9fd0fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:15:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5dbadfb6-b015-45de-b58d-7dae1c21817d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "406ac122-ad85-4245-b80b-02d89e1e4b03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231537Z:406ac122-ad85-4245-b80b-02d89e1e4b03" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:16:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "09c3bd56-666c-419e-9029-f505482c3677" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "27fa040e-82e9-463a-b12b-63e168308b2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231607Z:27fa040e-82e9-463a-b12b-63e168308b2d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:16:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "87716200-4dd8-4341-9298-273df720c4c5" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "fd1925f0-71a9-40ff-84dc-a419859887e8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231638Z:fd1925f0-71a9-40ff-84dc-a419859887e8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:17:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3d39095a-cd3b-43f3-9d00-47c6b4ff810a" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "11d3e7ec-2046-49bb-993e-c6433ba43935" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231708Z:11d3e7ec-2046-49bb-993e-c6433ba43935" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:17:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "89b8c5f8-c677-47ba-aaf2-11cc5a9526a0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "6e0ab634-95df-4eac-b5e1-30158ef06b33" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231738Z:6e0ab634-95df-4eac-b5e1-30158ef06b33" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:18:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "175fd110-1849-4c34-95c1-f68ba745a755" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "cc2ce6df-b205-41e4-8967-9e06dbe36d48" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231808Z:cc2ce6df-b205-41e4-8967-9e06dbe36d48" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:18:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "086a50c6-78d9-4176-a292-bf0fc89a3349" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "cd5e620f-ad32-423e-b957-be3b2917ca54" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231838Z:cd5e620f-ad32-423e-b957-be3b2917ca54" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:19:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7a06ea64-c520-495d-9cb7-02c255055a2c" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "17c2a1b5-4175-441c-99c4-3e2a7b8d869b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231909Z:17c2a1b5-4175-441c-99c4-3e2a7b8d869b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:19:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "75271171-b2cc-4300-a99a-ae556817f65e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "3e0fb411-c888-4e5c-abd0-2acfbace2c82" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T231939Z:3e0fb411-c888-4e5c-abd0-2acfbace2c82" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus0921827155.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus0921827155.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0f0b42b4-0c05-42ca-88ae-33a60107821d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "48c41966-7f9e-4d49-8618-d1964f2ee277" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232015Z:48c41966-7f9e-4d49-8618-d1964f2ee277" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "211fbc9f-1b1e-40a6-b8c6-0c79103a651b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisFirewall5139\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus0921827155.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus0921827155.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisFirewall5139.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "141623a7-05e0-462d-8e56-b4385cd17dfb" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "0ce52337-0650-45e6-ab52-e560d4e4d8c1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232016Z:0ce52337-0650-45e6-ab52-e560d4e4d8c1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleOne?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcy9SdWxlT25lP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "82" + ], + "x-ms-client-request-id": [ + "0ff66368-33e7-48db-b65e-934f47b92758" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n },\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall5139/RuleOne\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "301" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139/firewallRules/RuleOne?api-version=2017-10-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "804f9c07-76ab-479d-892b-b1df63a295a2" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "cbb7b866-a88c-40b9-b104-efd042d1ba53" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232018Z:cbb7b866-a88c-40b9-b104-efd042d1ba53" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleTwo?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcy9SdWxlVHdvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "84" + ], + "x-ms-client-request-id": [ + "8f6475d7-c056-4877-8bf3-21a14a3a0384" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n },\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall5139/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/redis/firewallRules\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/redis/RedisFirewall5139/firewallRules/RuleTwo?api-version=2017-10-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "37469e3b-ec27-4d5c-97f0-470d86a1d305" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "90e7563a-30ea-468a-94a5-9093ee9d975e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232018Z:90e7563a-30ea-468a-94a5-9093ee9d975e" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleOne?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcy9SdWxlT25lP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e3978fa-f0bf-4181-b547-b95b21967193" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall5139/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "11e3b1fc-07e0-48fe-aac6-6d0e49cf4917" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "e420bf52-447a-4d0f-a9b2-fa35c58233a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232019Z:e420bf52-447a-4d0f-a9b2-fa35c58233a4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleTwo?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcy9SdWxlVHdvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2e73362-346a-4b30-b331-1db4cbabf9a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall5139/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d4c7b0e8-ae5a-4e27-83ae-be19eac51995" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "813d46b7-6f4f-4546-a943-b03249a46b95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232019Z:813d46b7-6f4f-4546-a943-b03249a46b95" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "938bdd60-b80f-4f1c-ac8d-551b52bf48aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall5139/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleTwo\",\r\n \"name\": \"RedisFirewall5139/RuleTwo\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.64\",\r\n \"endIP\": \"10.0.0.128\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d0b356c5-8b4c-4c87-a1f1-b41efdad7926" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "c35f1564-ade0-4a2b-839d-3fefb8282959" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232019Z:c35f1564-ade0-4a2b-839d-3fefb8282959" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2179432-a8c7-41f6-b00a-716d00c2e6c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleOne\",\r\n \"name\": \"RedisFirewall5139/RuleOne\",\r\n \"type\": \"Microsoft.Cache/Redis/firewallRules\",\r\n \"properties\": {\r\n \"startIP\": \"10.0.0.0\",\r\n \"endIP\": \"10.0.0.32\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0179e6a7-6934-4ff6-8605-beec756cbbba" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "0d90c8fb-669b-4b0c-8a29-c0b6d149f776" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232020Z:0d90c8fb-669b-4b0c-8a29-c0b6d149f776" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisFirewall7809/providers/Microsoft.Cache/Redis/RedisFirewall5139/firewallRules/RuleTwo?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzRmlyZXdhbGw3ODA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNGaXJld2FsbDUxMzkvZmlyZXdhbGxSdWxlcy9SdWxlVHdvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc76ecce-a2a6-4757-900b-5330742ad115" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:20:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8b990967-7bfa-4308-9c61-58d7ba649ff4" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "a9d971bc-0ffa-4c62-99c0-4d88d2914593" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232020Z:a9d971bc-0ffa-4c62-99c0-4d88d2914593" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "FirewallFunctionalTest": [ + "RedisFirewall7809", + "RedisFirewall5139" + ] + }, + "Variables": { + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" + } +} \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json new file mode 100644 index 000000000000..339326d88e31 --- /dev/null +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GeoReplicationFunctionalTests/GeoReplicationFunctionalTest.json @@ -0,0 +1,5358 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3e12e92-cf14-46cc-b593-ee2076f53453" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a24750d4-5be2-43f2-8329-893d2d5a6061" + ], + "x-ms-correlation-request-id": [ + "a24750d4-5be2-43f2-8329-893d2d5a6061" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232102Z:a24750d4-5be2-43f2-8329-893d2d5a6061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12a5f559-b26d-44fe-8be8-b47117e52c3d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "8c215eb2-b6cc-43d7-8555-3f41fe744ed0" + ], + "x-ms-correlation-request-id": [ + "8c215eb2-b6cc-43d7-8555-3f41fe744ed0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232102Z:8c215eb2-b6cc-43d7-8555-3f41fe744ed0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisGeo900?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvOTAwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], + "x-ms-client-request-id": [ + "84756a74-7e97-4350-a461-eb0bef4bb240" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900\",\r\n \"name\": \"RedisGeo900\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "085ab82c-0728-4bc0-a708-6924e0034f6e" + ], + "x-ms-correlation-request-id": [ + "085ab82c-0728-4bc0-a708-6924e0034f6e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232103Z:085ab82c-0728-4bc0-a708-6924e0034f6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisGeo900?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvOTAwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b832971d-f08c-4e4a-9d0b-52cf8460e945" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900\",\r\n \"name\": \"RedisGeo900\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "0c8a2e6a-d7f0-48c1-a2be-b8b494189a23" + ], + "x-ms-correlation-request-id": [ + "0c8a2e6a-d7f0-48c1-a2be-b8b494189a23" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232103Z:0c8a2e6a-d7f0-48c1-a2be-b8b494189a23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "152" + ], + "x-ms-client-request-id": [ + "cbbdc2ec-3843-441d-a71d-818e816f3590" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"1tg+tXajCenrtTtHdQvGRxGkDZZmtOIOUi72ntg4vc4=\",\r\n \"secondaryKey\": \"8razRrs9aVRqTtb2Sk8LRSfDf51XxabY477/ig+wsn4=\"\r\n },\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "739" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/redis/RedisGeo13083?api-version=2017-10-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "578e8327-b90f-4b71-993b-94a534a33c18" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "173b9d7a-1c9d-45d6-a575-f40f36d38821" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232115Z:173b9d7a-1c9d-45d6-a575-f40f36d38821" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"East US 2 EUAP\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "151" + ], + "x-ms-client-request-id": [ + "3af2d00f-77db-425a-b47f-46496e6855a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"CEZJG4ZerCsQqlhjwO5tZdLmm26TfcSnbhWFPQmzlps=\",\r\n \"secondaryKey\": \"/ffoN9CJOoyNScwgS4La1Sb/bhou/QlIOhLcrYMxu1Q=\"\r\n },\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "738" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://brazilus.management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/redis/RedisGeo29176?api-version=2017-10-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4881a739-5b5b-4455-93b2-a62bf075a7da" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e0b285c7-0a92-4066-846e-895d76b0b570" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232118Z:e0b285c7-0a92-4066-846e-895d76b0b570" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d41e98e7-18e7-44bc-9a23-9baccb610199" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "89177bb5-809e-4139-ad59-9e7eb7c76b3f" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "dcfa8574-6af6-41e9-9eb8-9ab9f7ffb1e0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232118Z:dcfa8574-6af6-41e9-9eb8-9ab9f7ffb1e0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1c6e3ac-cd01-45ac-a480-2957e2803cb4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fb6d8a06-7dc5-4526-9d50-36fa1900f45b" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "fa7df4b1-4186-4f74-bb9f-3e199d095c59" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232148Z:fa7df4b1-4186-4f74-bb9f-3e199d095c59" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0ea12aa-8878-478d-9807-efc1e40cbe5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:22:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "80baddad-7185-4d7f-82f5-ff59fe279854" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "8c10ba0b-fde5-4dde-b911-54343eb42027" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232218Z:8c10ba0b-fde5-4dde-b911-54343eb42027" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6babd30-0d87-4c8a-8455-cd0f3ac23c23" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:22:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "db854bcb-6b7b-4b2d-b5ad-890e9ba92762" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "78536c4b-f936-46a7-9f85-fd041dba1c4c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232248Z:78536c4b-f936-46a7-9f85-fd041dba1c4c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa3e1f59-4a8a-46db-972f-7f23a4cc11e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:23:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "479888f2-feb9-456a-bc82-d3f4488c1ad0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "29f14399-eed1-4695-a178-659e0107a79d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232319Z:29f14399-eed1-4695-a178-659e0107a79d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bd0c413-aa0d-44a0-ac50-a1457f7508c2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:23:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "317edff7-98fb-4c08-abc9-52fb859b050e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "d85ba1cd-22ce-46fa-91d8-285c598c60bf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232349Z:d85ba1cd-22ce-46fa-91d8-285c598c60bf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44e93138-119e-491f-b4ce-94141227018c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:24:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8cf7c57f-5248-4b88-abf3-217626ccef88" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "abd6f2bf-6c91-4f14-ac5d-3ea84dfa33f6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232419Z:abd6f2bf-6c91-4f14-ac5d-3ea84dfa33f6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58e448c1-4730-41cb-8c39-9086fa5e2712" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:24:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "94140d92-407c-4cb2-96bc-21e1648bc4be" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "dc773883-4a52-4f22-987b-4e2ca2215768" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232449Z:dc773883-4a52-4f22-987b-4e2ca2215768" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2db1f3a4-4de8-4e7c-863a-8130998f5f0f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:25:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "47db9fea-8c90-478c-873b-07aaf9ee3132" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "a61ad563-a8f5-4d03-9d90-a86c7573db85" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232520Z:a61ad563-a8f5-4d03-9d90-a86c7573db85" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2d9d4a9-f15e-4336-8527-556ab45b5046" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:25:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "137d3b8f-c7d1-4f1a-8085-ed471445e626" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "a1996493-4d1d-44f3-a5fb-0a8acdee5730" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232550Z:a1996493-4d1d-44f3-a5fb-0a8acdee5730" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "806302a6-98e1-4946-a9f1-03e7e53f4985" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:26:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "158c57cf-a8f4-4629-af83-c4f3bedb04b8" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "bf06a6c3-1234-4325-8373-1c0c16c22c3a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232620Z:bf06a6c3-1234-4325-8373-1c0c16c22c3a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c16582-0dd3-41a9-800c-911fa48d48da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:26:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "44421666-8617-437d-a474-b7ff34e1f149" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "b32a3fd0-9821-4f08-a631-d0cb9d575efc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232651Z:b32a3fd0-9821-4f08-a631-d0cb9d575efc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e751f7f6-9c72-4412-a954-6336c7e1b346" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:27:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9ff21ac1-aea3-4503-aba7-9106e409174e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "21183622-1e7b-4f8d-9e84-7c170bcee204" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232721Z:21183622-1e7b-4f8d-9e84-7c170bcee204" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "330f4a27-2a6f-45cc-88a9-9b6f56a84971" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:27:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7985de46-d11b-4e98-95a4-29342c08ff54" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "6ead7c2e-858b-4213-abc9-96c37c2679b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232751Z:6ead7c2e-858b-4213-abc9-96c37c2679b8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32526dfb-b894-4448-a6c3-38cecdc4e571" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:28:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2dbc6dad-827b-4e91-9a01-bacea4ed1329" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "e431cd33-266e-4bd8-8fa9-2b36b23109a6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232826Z:e431cd33-266e-4bd8-8fa9-2b36b23109a6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "548e3897-7877-4060-81eb-697c10ad6f5c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:28:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "172e8c09-cf27-4f5c-a671-dbf93ec18eaf" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "f2b09492-c1c4-4f79-9862-4ca832a954e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232857Z:f2b09492-c1c4-4f79-9862-4ca832a954e3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d659040-95c8-4f2d-9269-c4df9c833c1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:29:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ccf48b44-8141-415c-983b-b4a3df615301" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "0f235633-36e1-4d1c-afa7-4e332f9466f8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232927Z:0f235633-36e1-4d1c-afa7-4e332f9466f8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85abac7c-d716-4b5b-b602-d651b27511b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:29:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e604a9f3-de28-4efb-8a63-2480be900319" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "4352983b-ff2d-494d-9c3f-1666e9bcc914" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232957Z:4352983b-ff2d-494d-9c3f-1666e9bcc914" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18a50f78-73c6-4589-945a-504db40ceccd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:30:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9236461a-29ea-4be5-b698-d5d5a4aa7c89" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "4bf9e2e7-b905-48ef-81ab-b817535ee1fa" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233027Z:4bf9e2e7-b905-48ef-81ab-b817535ee1fa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b730057e-632c-4131-9f87-73f2c51b88d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:30:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ab159856-b253-4012-9a02-fe53b5c1beef" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "218b62a2-4073-4459-a152-7d5bd31ca55c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233059Z:218b62a2-4073-4459-a152-7d5bd31ca55c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4072e3b-d271-4e90-9629-ab5ed20ead58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:31:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "84a34aa5-3c84-435b-80cd-e05e9801a1fe" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "64e132e1-42ae-49ad-b2cb-6e2b0bc63c7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233129Z:64e132e1-42ae-49ad-b2cb-6e2b0bc63c7d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51f1bf44-cdd1-4943-b8d9-e859f1b82153" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus7827170540.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus7827170540.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo13083.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:32:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b90e9da9-641c-4a01-8f48-8809b2b45eb8" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "88dedb05-dc49-4c02-88f0-0ca403e9aa4a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233201Z:88dedb05-dc49-4c02-88f0-0ca403e9aa4a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67c02466-740c-4053-958f-6356047df024" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f301c59a-29ee-4b5a-95c3-eb544b732de5" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "31bc9564-9d94-47a8-9b9a-2e4a3ff1cf11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232118Z:31bc9564-9d94-47a8-9b9a-2e4a3ff1cf11" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41522eb8-a417-4d1b-96be-2a5dfb0244af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:21:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "29e9ab6a-536e-4579-b2b8-1ba4661af3ad" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "41478027-f31c-4b41-9b34-21a2a312cf27" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232148Z:41478027-f31c-4b41-9b34-21a2a312cf27" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "109446b2-b9da-4219-babd-ae9532c02b20" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:22:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5d1e4fb8-aa0f-4a95-b2d1-a795a7d65b3e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "170afb33-8fe4-4530-b685-07da2b434329" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232218Z:170afb33-8fe4-4530-b685-07da2b434329" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b2aecc2-1744-44e3-984d-fad55e107bb1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:22:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "30d668d9-2b75-430b-a4de-d77526b9ff4e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "037de70c-3767-4414-83dc-a3019cacfaca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232248Z:037de70c-3767-4414-83dc-a3019cacfaca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb1fa514-65aa-4021-9cdc-a5cb513c2229" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:23:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b35663f0-dcc9-40a1-a270-c032bb47abcd" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "1beba659-a876-408a-a8fb-a1cf4e317888" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232319Z:1beba659-a876-408a-a8fb-a1cf4e317888" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7701d06a-fc9c-4138-af96-ee14879ccec6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:23:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "39f10091-12ba-42f6-8a0d-a285a29f26a6" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "6b726c94-0195-4a91-87d8-90f4c903677d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232349Z:6b726c94-0195-4a91-87d8-90f4c903677d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a523b5a9-778b-436b-84b7-287c496a930b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:24:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "529071c9-60f5-42da-a20b-7b986209c0b8" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "83c4efea-564c-4cad-979c-071732b6e445" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232419Z:83c4efea-564c-4cad-979c-071732b6e445" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f7305ae-3e3a-43fa-b773-f0e1ced25edb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:24:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ba2695bc-e918-411d-9acf-cfe2d51d01ee" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "ccfaf741-5d82-4a9f-a4de-24b4859a53ed" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232450Z:ccfaf741-5d82-4a9f-a4de-24b4859a53ed" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "290df4bf-71f7-4461-ad90-cd466f05c022" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:25:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8a91a2bc-1959-4db1-a82b-ff77f0c1bf9d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "d292b469-abbc-4bf4-bd4c-7c3dfa577af8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232520Z:d292b469-abbc-4bf4-bd4c-7c3dfa577af8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ba958a9-db66-4964-b304-e7f1d427fff2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:25:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "893f4414-398c-435d-9a5d-054051a07b2e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "a758660c-25d7-4231-acb5-db1d156039a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232550Z:a758660c-25d7-4231-acb5-db1d156039a1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5089cc4-d662-4437-8801-91248d9b123a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:26:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a8bbb492-4b9e-4f33-bfd3-4792f4b25600" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "e4930239-db32-46c9-85bc-835a92be0fe2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232621Z:e4930239-db32-46c9-85bc-835a92be0fe2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe9445c0-3642-43e4-8595-57df35d0b1fc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:26:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f5aea214-5d2d-4b53-b124-abd7d951a9e5" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "292d4fb6-381c-4058-978e-3b1127d6c0d6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232651Z:292d4fb6-381c-4058-978e-3b1127d6c0d6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916a98c8-7a23-47c4-97c8-01726070836b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:27:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b7f57276-5b87-44b4-8aca-19c38e36dfb2" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "e5036f51-00a3-4208-a1c5-e6e197b89cb3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232721Z:e5036f51-00a3-4208-a1c5-e6e197b89cb3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caaee5b6-066a-4b83-8833-18c34df641a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:27:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b1e6077c-ad8e-48a0-aaf5-3e781ae74dbb" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "05237792-8926-4de8-95af-1506ca5b330c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232751Z:05237792-8926-4de8-95af-1506ca5b330c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d01f0f23-896e-4dfb-9bca-f5fd83b64866" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:28:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4307608e-b9c8-41b3-bfad-ee225db25810" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "5c2f6228-9c6d-45b2-a30b-666ccfec2f2d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232827Z:5c2f6228-9c6d-45b2-a30b-666ccfec2f2d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c5eae23-2f4c-4d42-8431-2ef1e3031729" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:28:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ad08d330-86bf-42ad-ac80-a0867b3bd1a0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "4155a664-758d-4593-aa13-4fdfcb406d4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232857Z:4155a664-758d-4593-aa13-4fdfcb406d4e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24851b3c-8976-4e75-9912-e9b992b6d448" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:29:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0a3fe511-d4d4-408d-951c-ad845956364f" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "b2151c90-c2e3-4cde-beb8-603d86fb0c31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232927Z:b2151c90-c2e3-4cde-beb8-603d86fb0c31" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f78e0838-dfc2-443d-9bc6-dddb4732ae30" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:29:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8ce2e559-1786-4fee-b782-187db4404876" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "b5a5be84-92ba-432f-8f21-3385b1c9c244" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T232957Z:b5a5be84-92ba-432f-8f21-3385b1c9c244" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0200d91f-cfdb-4d92-8205-75ff7e857d3a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva4139795965.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva2839463650.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva3374045729.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva8682439314.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva6982451285.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva9851147943.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva9622722225.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva3709606069.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva5050634065.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva6411910563.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:30:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ec72eb04-53dc-4ab5-a080-87aef08ec04e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "0a0adedd-1345-42b0-a6d7-5a258378c20c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233029Z:0a0adedd-1345-42b0-a6d7-5a258378c20c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29f92271-c61a-4ada-9800-3635178e7fe0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva4139795965.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva2839463650.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva3374045729.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva8682439314.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva6982451285.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva9851147943.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva9622722225.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva3709606069.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva5050634065.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva6411910563.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:30:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f0d8bea7-4c7c-401a-b0b8-9ec426b04481" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "141516e0-1c1f-4718-8313-c97c51f1a8d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233059Z:141516e0-1c1f-4718-8313-c97c51f1a8d2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36b5ac6e-17ae-4cbc-a8fe-051ca389e32d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva4139795965.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva2839463650.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva3374045729.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva8682439314.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva6982451285.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva9851147943.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva9622722225.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva3709606069.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva5050634065.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva6411910563.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:31:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0801e5ce-305e-4cab-9c76-c6b382032dc8" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "52af6d8c-4d40-429e-a1fc-3df47e4260bc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233130Z:52af6d8c-4d40-429e-a1fc-3df47e4260bc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f7b8b07-fb01-4cdb-888b-14e54e9348b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euap7810804296.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapscaleu2889577331.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva4139795965.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva2839463650.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva3374045729.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva8682439314.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva6982451285.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva9851147943.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva9622722225.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva3709606069.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://eus2euapgeneva5050634065.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"eus2euapgeneva6411910563.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGeo29176.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:32:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a4a0cfcf-2881-453b-b18c-38fe6d1b8d3a" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "ecec399e-b418-4e43-bc06-9b48331ad54f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233202Z:ecec399e-b418-4e43-bc06-9b48331ad54f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "265" + ], + "x-ms-client-request-id": [ + "ee2a4e8b-82f6-441c-a2df-c615405b9703" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "546" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:32:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "21c84359-b716-4424-8940-4064d013ac6d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b5099b80-ac70-431a-8d6c-6f0d15642727" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233203Z:b5099b80-ac70-431a-8d6c-6f0d15642727" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:32:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2288a444-51c6-4986-9347-c81b7da064ac" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "fa0bd84a-dd3c-4477-9ec0-7cacc96feab2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233234Z:fa0bd84a-dd3c-4477-9ec0-7cacc96feab2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Creating\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:33:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cc9c1265-bf71-443f-8842-48ec79bdfdbe" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "1731900e-8e48-45ab-98d7-46d6fb432b60" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233304Z:1731900e-8e48-45ab-98d7-46d6fb432b60" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:33:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "35d23747-615d-4ea6-9405-c23022463ea8" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "7e43cf87-f4ad-49a9-bec4-06f1cd7f4a2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233335Z:7e43cf87-f4ad-49a9-bec4-06f1cd7f4a2c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:34:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fe963b39-9b05-496b-a321-0b1508ee01d6" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "f35591c0-7d3b-42f2-b407-736a4cfdff20" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233405Z:f35591c0-7d3b-42f2-b407-736a4cfdff20" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:34:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5ceeeb8a-03a2-4fb1-abec-d252b295aae7" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "9b2a2a8b-e1bd-4389-83e7-21e0fec44155" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233436Z:9b2a2a8b-e1bd-4389-83e7-21e0fec44155" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:35:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "acb6088a-11a3-4062-ba45-6846b775799e" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "21d6ee44-637d-45e7-ae27-a788162e7391" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233506Z:21d6ee44-637d-45e7-ae27-a788162e7391" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Syncing\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:35:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "25a41995-40c7-41df-9c96-8b9d591b7ca2" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "64a5e129-43f0-493e-8490-e86dc6cc9042" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233537Z:64a5e129-43f0-493e-8490-e86dc6cc9042" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f4da0ce4-0b1a-497d-8f5c-cd470cc8baad" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "9ea8fa59-915a-4302-81a8-680dbc32b116" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233607Z:9ea8fa59-915a-4302-81a8-680dbc32b116" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "154519bb-8248-4c8d-8f7f-bcd6360e0584" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d82d6a5e-5e9e-47d0-a40d-a501f954dbd3" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "356c95a4-2288-4aad-b1c5-1f549126bd52" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233608Z:356c95a4-2288-4aad-b1c5-1f549126bd52" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9b0299e-55f1-4d04-a68c-83e11a8ba633" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b640acf4-b1e4-48c7-83da-6f97dacdbd8a" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "28ca1391-e5ba-4d0d-95d7-fdd8ed73650f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233608Z:28ca1391-e5ba-4d0d-95d7-fdd8ed73650f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5597b46-f936-4651-b774-03b2b847ac58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6165516b-0330-417c-a095-76e903fd0f80" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "746337fb-101c-4922-bfef-638d767ff195" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233640Z:746337fb-101c-4922-bfef-638d767ff195" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9294f92a-7562-4686-951e-3a04888d1d81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:37:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "50b96494-c897-46cc-8aa2-2520b2b82161" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "e1eb7581-e83d-46df-919d-c61bc6617aa5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233710Z:e1eb7581-e83d-46df-919d-c61bc6617aa5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbf72303-187c-41a3-8243-b1cf1386ebf5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176\",\r\n \"name\": \"RedisGeo29176\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176\",\r\n \"linkedRedisCacheLocation\": \"East US 2 EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Secondary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:37:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ccb9be4f-0bf9-4eea-afbe-e502ea20be8d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "3b5e5b53-862f-40ba-ac3f-d36ee0d5f4d9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233740Z:3b5e5b53-862f-40ba-ac3f-d36ee0d5f4d9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "331a6112-5294-4107-b62f-f40c34aab688" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:38:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "29e04ca5-0d80-4d2e-b84c-58841085d90d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "d8c9b366-afe0-4f9f-b593-75f6cb546fe5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233810Z:d8c9b366-afe0-4f9f-b593-75f6cb546fe5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b089218b-b95f-4233-8b4e-36f24171038c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:38:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f6834d65-e5e7-4438-8431-14a05743bfb0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "8f72a32f-2c44-4d99-8b5f-c7b33ebca72c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233841Z:8f72a32f-2c44-4d99-8b5f-c7b33ebca72c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65edd08f-0709-4b72-9461-67bcda801555" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "268c7b21-75cf-49b8-884b-f2f931194615" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "7267f2f8-ecc3-461d-8ba4-6719cb872179" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233916Z:7267f2f8-ecc3-461d-8ba4-6719cb872179" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMTMwODM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e060afc7-ff25-4b5d-890e-6fdcf151d287" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ffa92932-8aa3-4d59-a1ef-0b7e5df58877" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "8e010c20-0dce-46b2-a4cc-86631ae7254a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233609Z:8e010c20-0dce-46b2-a4cc-86631ae7254a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2934540-3a46-4204-bd8d-7eea5461bb6b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f18f1473-c2de-4d47-bd7f-e94e62736b38" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "165e5bcf-5fe9-492c-8a4e-6c1c3a5a1994" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233609Z:165e5bcf-5fe9-492c-8a4e-6c1c3a5a1994" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bce78b5-1b07-4932-8635-03df7b1eb0be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8b685803-95d4-4649-9108-b3ba803a2ac9" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "12a8a48b-280a-4a3d-bb65-9736781659c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233640Z:12a8a48b-280a-4a3d-bb65-9736781659c5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a89cd0e1-55aa-4ff4-b16c-e2b071913fe4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:37:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7d3e7dfd-4689-43aa-b497-468c5a5794e0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "46757dc2-2e32-4083-b761-007a25da9772" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233710Z:46757dc2-2e32-4083-b761-007a25da9772" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "703418a0-744d-492b-9776-da96778e93aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:37:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "653a7f70-00bb-416b-b623-b98c236032fc" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "375c9943-9dba-45d9-a785-0a1621f62264" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233740Z:375c9943-9dba-45d9-a785-0a1621f62264" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35e55367-3b55-46d7-a709-478a63306961" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:38:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c587036-21cd-4f7f-a3bf-42b50df304e0" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "4798dc17-2267-4bc7-a382-d40251692d31" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233810Z:4798dc17-2267-4bc7-a382-d40251692d31" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c226bf9c-a692-4e23-a639-637880211fa9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers/RedisGeo13083\",\r\n \"name\": \"RedisGeo13083\",\r\n \"type\": \"Microsoft.Cache/Redis/linkedServers\",\r\n \"properties\": {\r\n \"linkedRedisCacheId\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083\",\r\n \"linkedRedisCacheLocation\": \"West Central US\",\r\n \"provisioningState\": \"Deleting\",\r\n \"serverRole\": \"Primary\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:38:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "10f413e6-e97b-4a10-9072-3af9d1044b00" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "2f9f1501-25d1-486a-9fa4-3c5190f604f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233841Z:2f9f1501-25d1-486a-9fa4-3c5190f604f7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176/linkedServers?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Ni9saW5rZWRTZXJ2ZXJzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dcfe15c5-3e97-48a4-9083-f51a30045bff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "704813f8-3e3f-4d90-b974-651675fb4e6d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "923c701b-6ee6-4f2c-bd4b-064dc69d4a4b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233916Z:923c701b-6ee6-4f2c-bd4b-064dc69d4a4b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083/linkedServers/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4My9saW5rZWRTZXJ2ZXJzL1JlZGlzR2VvMjkxNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e0fe8f4-c72e-46fa-a914-d5cab8ceb9d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:36:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4ddba097-6cd5-407c-bd49-4998accc6845" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "47136795-7ae4-4561-9cfd-596ec54b03ce" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233610Z:47136795-7ae4-4561-9cfd-596ec54b03ce" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo13083?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8xMzA4Mz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c1919e8-fb43-4c21-b15e-85935eaed39b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f29d3a15-792e-4ff9-9248-80b6fce402f4" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "17b72946-1b95-48ed-870a-4fe6ce13aa11" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233917Z:17b72946-1b95-48ed-870a-4fe6ce13aa11" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGeo900/providers/Microsoft.Cache/Redis/RedisGeo29176?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2VvOTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNHZW8yOTE3Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aad8dd97-c883-4fdd-a2c2-86d39102e575" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ab331af7-0601-45f9-9948-6b9cca8f4431" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "dff61af2-52b8-4fdc-8f0d-d4aa60657b61" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233918Z:dff61af2-52b8-4fdc-8f0d-d4aa60657b61" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisGeo900?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2VvOTAwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a9c322c-7e37-4238-a3ac-8abc0af73867" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzkwMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "89803b6c-928b-4edb-8dfe-35dec97da6d2" + ], + "x-ms-correlation-request-id": [ + "89803b6c-928b-4edb-8dfe-35dec97da6d2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233919Z:89803b6c-928b-4edb-8dfe-35dec97da6d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzkwMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUemt3TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzkwMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "1f4b2588-1526-4bc2-8b7e-16b28165b899" + ], + "x-ms-correlation-request-id": [ + "1f4b2588-1526-4bc2-8b7e-16b28165b899" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233934Z:1f4b2588-1526-4bc2-8b7e-16b28165b899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzkwMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUemt3TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:39:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzkwMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "b81f9b55-8268-4972-b1d2-4db0c2385386" + ], + "x-ms-correlation-request-id": [ + "b81f9b55-8268-4972-b1d2-4db0c2385386" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T233949Z:b81f9b55-8268-4972-b1d2-4db0c2385386" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRURJU0dFTzkwMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlVSSlUwZEZUemt3TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 23:40:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "72202b10-1457-48bc-9a2d-44de69716b1d" + ], + "x-ms-correlation-request-id": [ + "72202b10-1457-48bc-9a2d-44de69716b1d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T234004Z:72202b10-1457-48bc-9a2d-44de69716b1d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GeoReplicationFunctionalTest": [ + "RedisGeo900", + "RedisGeo13083", + "RedisGeo29176" + ] + }, + "Variables": { + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" + } +} \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/GetTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/GetTest.json index 0a3a4330bca3..ee6d5886f33d 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/GetTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/GetTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa0dfae2-6acd-4a3e-8bb5-27f6aa34359b" + "2701837f-81e2-4565-91be-4eb21477f00c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:54 GMT" + "Tue, 05 Dec 2017 23:58:25 GMT" ], "Pragma": [ "no-cache" @@ -44,22 +44,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3ee80db2-2fb7-48b7-8d46-035e53c58cbf" + "ba71ac90-8d02-41bc-9da9-b0d8b16e26dc" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "5ecf3564-c745-46a6-b6cc-4aebae1598d7" + "de02d3bf-a67d-40b1-b8d5-7801d886a6fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T073754Z:5ecf3564-c745-46a6-b6cc-4aebae1598d7" + "WESTUS2:20171205T235826Z:de02d3bf-a67d-40b1-b8d5-7801d886a6fb" ] }, "StatusCode": 200 @@ -67,6 +70,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListKeysTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListKeysTest.json index ec7166285e52..8b2fb085e728 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListKeysTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListKeysTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1/listKeys?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34cb5031-6944-4bca-8a69-50be434feb11" + "d1e60231-e985-4f61-933a-08c39d5f51bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"KTT0Dv9QDXTQZQoAoHG9EmVF8x9pzdacDvkOdbKvS+U=\",\r\n \"secondaryKey\": \"qDTqBnvT8izZ9j/bii51494VH9Y4jBjpVMhsjgJWlY4=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"TCY14JWx0Upa8HGamlAwQLTZFEo9v5k0j8bVaBDSxag=\",\r\n \"secondaryKey\": \"uY2/xD9NwAijrWxIu3miCoyMN65vsxMMGxgipxaMJxM=\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:54 GMT" + "Tue, 05 Dec 2017 23:58:43 GMT" ], "Pragma": [ "no-cache" @@ -44,22 +44,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2b66af89-8678-47cb-83e8-c6cbd94245c4" + "90074ad9-d7b9-4963-9a10-92d9809b830d" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "25a7fff6-d837-4d17-b41a-255aae0cd736" + "c52778a1-64fd-4adf-b7ff-39dc6ace0f48" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T073754Z:25a7fff6-d837-4d17-b41a-255aae0cd736" + "WESTUS2:20171205T235844Z:c52778a1-64fd-4adf-b7ff-39dc6ace0f48" ] }, "StatusCode": 200 @@ -67,6 +70,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListTest.json index 0fc0408eae0a..4d13a96c1101 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNi0wNC0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy8/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b1b489e-5c37-47a0-a973-a14da8fe1bcd" + "fd3764b9-7b64-4ffd-b13e-402e0c710556" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:53 GMT" + "Tue, 05 Dec 2017 23:58:55 GMT" ], "Pragma": [ "no-cache" @@ -44,22 +44,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e665c34f-5ed8-4e5a-93e1-83d8433b958c" + "aef00a4d-d83f-4a47-82b5-5d1052ffe949" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "0d9fe79f-9a11-47df-b3e4-a224d6670c61" + "c1baefc3-48d0-444b-962a-ca1dcff81f77" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T073754Z:0d9fe79f-9a11-47df-b3e4-a224d6670c61" + "WESTUS2:20171205T235855Z:c1baefc3-48d0-444b-962a-ca1dcff81f77" ] }, "StatusCode": 200 @@ -67,6 +70,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json index b3cd8219932e..1affc071afee 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/ListWithoutResourceGroupTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache/Redis/?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/Redis/?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a23639ea-7803-4f71-9199-cb3ccb679fb2" + "0ec0db0c-e734-4f42-b80e-2f5e4287baf9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/SiddharthsSub/providers/Microsoft.Cache/Redis/sunny\",\r\n \"location\": \"Central US\",\r\n \"name\": \"sunny\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": true,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cus1411937841.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://cus1411937841.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cusscaleunit2580560042.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://cusscaleunit2580560042.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cusgenevasa4605726365125.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"cusgenevasb4605730279516.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cusgenevasa5456295043133.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"cusgenevasb5450399573005.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cusgenevasa4764071425661.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"cusgenevasb4769756945238.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cusgenevasa1031577822169.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"cusgenevasb1035553553564.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://cusgenevasa5683815977174.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"cusgenevasb5681083642259.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"255\",\r\n \"maxmemory-policy\": \"volatile-lru\",\r\n \"aof-backup-enabled\": \"false\",\r\n \"rdb-backup-enabled\": \"false\",\r\n \"rdb-backup-frequency\": \"60\",\r\n \"rdb-backup-max-snapshot-count\": \"1\",\r\n \"maxmemory-delta\": \"255\",\r\n \"rdb-storage-connection-string\": \"DefaultEndpointsProtocol=https;BlobEndpoint=https://sunnycus.blob.core.windows.net/;AccountName=sunnycus;AccountKey=[key hidden]\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n },\r\n \"zones\": null\r\n },\r\n {\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,37 +29,32 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:54 GMT" + "Tue, 05 Dec 2017 23:58:16 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "c0da46cb-8d47-4f1c-84e3-116d442cc21a" - ], - "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-original-request-ids": [ + "8b478d7f-24ae-4d01-aa0c-cb075b4001b8", + "c52eeaf5-a78f-4fce-b900-d60218ef2fc0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" + ], + "x-ms-request-id": [ + "85b5fd62-22e1-4b71-a8f3-de1bc3a8644b" ], "x-ms-correlation-request-id": [ - "8c5a19d3-d5c8-49b8-9ea4-5a34efcd51b6" + "85b5fd62-22e1-4b71-a8f3-de1bc3a8644b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T073755Z:8c5a19d3-d5c8-49b8-9ea4-5a34efcd51b6" + "WESTUS2:20171205T235816Z:85b5fd62-22e1-4b71-a8f3-de1bc3a8644b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 200 @@ -67,6 +62,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/RegenerateKeyTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/RegenerateKeyTest.json index 28a56a02bdb1..d01699349066 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/RegenerateKeyTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.GetListKeysFunctionalTests/RegenerateKeyTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1/listKeys?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b64aeb03-4b6f-4df8-8958-2e7989341307" + "aa2800dd-4721-4af9-a9a4-a1bb75bd0b51" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"jJKb/dS6rDAFwDmMVH6NCDx9OdXXzikorbrgpJAQn38=\",\r\n \"secondaryKey\": \"qDTqBnvT8izZ9j/bii51494VH9Y4jBjpVMhsjgJWlY4=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"O3XchMmW9P0x21XGljeiiL0wqbq8z9SVquOd3P+u15M=\",\r\n \"secondaryKey\": \"uY2/xD9NwAijrWxIu3miCoyMN65vsxMMGxgipxaMJxM=\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:52 GMT" + "Tue, 05 Dec 2017 23:57:56 GMT" ], "Pragma": [ "no-cache" @@ -44,29 +44,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e3243219-283a-48c2-b1a0-108fad127a65" + "9edd06d8-251c-4f21-9f50-5f111b53b086" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "a08909bc-1fba-4647-8ce0-42a979ef3e6e" + "e058eca1-79f2-49ac-83b7-c62a4205a865" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T073752Z:a08909bc-1fba-4647-8ce0-42a979ef3e6e" + "WESTUS2:20171205T235756Z:e058eca1-79f2-49ac-83b7-c62a4205a865" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1/regenerateKey?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMS9yZWdlbmVyYXRlS2V5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946/regenerateKey?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2L3JlZ2VuZXJhdGVLZXk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { @@ -77,17 +80,17 @@ "28" ], "x-ms-client-request-id": [ - "308f4edf-793a-4389-a921-40dddaefc093" + "b50bff10-5d1a-4eae-9f75-99dc5b05f9f1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"KTT0Dv9QDXTQZQoAoHG9EmVF8x9pzdacDvkOdbKvS+U=\",\r\n \"secondaryKey\": \"qDTqBnvT8izZ9j/bii51494VH9Y4jBjpVMhsjgJWlY4=\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"TCY14JWx0Upa8HGamlAwQLTZFEo9v5k0j8bVaBDSxag=\",\r\n \"secondaryKey\": \"uY2/xD9NwAijrWxIu3miCoyMN65vsxMMGxgipxaMJxM=\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -99,7 +102,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:53 GMT" + "Tue, 05 Dec 2017 23:57:57 GMT" ], "Pragma": [ "no-cache" @@ -114,22 +117,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "da53749d-6996-4207-a11a-8d274bf027eb" + "146d047f-2f2c-4c09-9fb5-93ace93018e9" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "b6c64a6c-2597-4aba-b28c-4bbbe24b44b2" + "5cfbbaa6-9ff8-457d-ba7a-b4caaba47f78" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T073753Z:b6c64a6c-2597-4aba-b28c-4bbbe24b44b2" + "WESTUS2:20171205T235757Z:5cfbbaa6-9ff8-457d-ba7a-b4caaba47f78" ] }, "StatusCode": 200 @@ -137,6 +143,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json index 18cf2c248826..348c1cec340b 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.PatchSchedulesFunctionalTests/PatchSchedules_PutGetDelete.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be5debcb-11a9-46fc-9c95-fa24edecbf91" + "ec875c27-65ac-4659-8aa6-58b4460cd9d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +29,28 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:41:57 GMT" + "Wed, 06 Dec 2017 00:00:11 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "ed705a44-367a-432e-9660-c6aa5aa62ddf" + "dd3f1600-439b-4623-a44e-a5186a195e53" ], "x-ms-correlation-request-id": [ - "ed705a44-367a-432e-9660-c6aa5aa62ddf" + "dd3f1600-439b-4623-a44e-a5186a195e53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204158Z:ed705a44-367a-432e-9660-c6aa5aa62ddf" + "WESTUS2:20171206T000011Z:dd3f1600-439b-4623-a44e-a5186a195e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,23 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6d67b37-3f9c-4c05-97e1-e685026a36dd" + "5828224d-355b-4d5d-898d-0d5251264c13" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +87,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:41:57 GMT" + "Wed, 06 Dec 2017 00:00:11 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "dd4fbba2-d677-4fb6-bc17-25500f7f38dc" + "a85aebc2-882e-4921-b4b6-39a53ec40055" ], "x-ms-correlation-request-id": [ - "dd4fbba2-d677-4fb6-bc17-25500f7f38dc" + "a85aebc2-882e-4921-b4b6-39a53ec40055" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204158Z:dd4fbba2-d677-4fb6-bc17-25500f7f38dc" + "WESTUS2:20171206T000011Z:a85aebc2-882e-4921-b4b6-39a53ec40055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,32 +114,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/redisCacheRGsunnyjapan7857?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisSchedules488?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"Japan West\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "32" + "37" ], "x-ms-client-request-id": [ - "de6f7a73-1c59-42a5-8843-e1441fc2b164" + "6fc7a93d-0f8f-4974-bebf-7c9dbce7450e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857\",\r\n \"name\": \"redisCacheRGsunnyjapan7857\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488\",\r\n \"name\": \"RedisSchedules488\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "208" + "194" ], "Content-Type": [ "application/json; charset=utf-8" @@ -148,22 +151,22 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:41:59 GMT" + "Wed, 06 Dec 2017 00:00:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "d979a820-fd0a-4fe1-b872-bf6d5870cfe7" + "06bbbd6a-e036-48d1-a462-6d0b414d102c" ], "x-ms-correlation-request-id": [ - "d979a820-fd0a-4fe1-b872-bf6d5870cfe7" + "06bbbd6a-e036-48d1-a462-6d0b414d102c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204200Z:d979a820-fd0a-4fe1-b872-bf6d5870cfe7" + "WESTUS2:20171206T000028Z:06bbbd6a-e036-48d1-a462-6d0b414d102c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +175,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/redisCacheRGsunnyjapan7857?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisSchedules488?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "150a99fe-0121-4766-bacb-01f067843c01" + "6b6add65-3a57-4558-a405-21df500836d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857\",\r\n \"name\": \"redisCacheRGsunnyjapan7857\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488\",\r\n \"name\": \"RedisSchedules488\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +203,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:42:00 GMT" + "Wed, 06 Dec 2017 00:00:27 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +212,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14997" ], "x-ms-request-id": [ - "588b2c3d-52ad-4ff2-840d-951f78a13542" + "93fc1bb3-d614-441b-b945-ec583e93250c" ], "x-ms-correlation-request-id": [ - "588b2c3d-52ad-4ff2-840d-951f78a13542" + "93fc1bb3-d614-441b-b945-ec583e93250c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204200Z:588b2c3d-52ad-4ff2-840d-951f78a13542" + "WESTUS2:20171206T000028Z:93fc1bb3-d614-441b-b945-ec583e93250c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,32 +230,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"Japan West\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "147" + "152" ], "x-ms-client-request-id": [ - "6ac07c32-9d4a-448d-abc6-8eed3145ce52" + "51cefdc6-3f0e-4d73-b5a4-a5317da86d72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"nsBdjuy4eJkptcxFYZpChioNMyElItvO5Yat3klwLVw=\",\r\n \"secondaryKey\": \"51w7KKQ0XcBnKqsONZDMTGGhyOV4eRhf3GjmMfHkG0w=\"\r\n },\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"Na+l+KTZYislFRcNuV6F62sGP0IwSQGJuGx1/OfZ8ZA=\",\r\n \"secondaryKey\": \"OIbI4TQ6NdAfYXdf/WAYaLOxCwR6oT+F6Y/JNttg4I0=\"\r\n },\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "721" + "760" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,50 +267,53 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:42:04 GMT" + "Wed, 06 Dec 2017 00:00:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8696c2b5-4775-477d-b597-bd0be6c1db91" + "980d0cdc-4c41-4b42-ad3d-58ebe59b3830" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "dd7da4d2-a4af-4795-a104-ea792a235ed9" + "196cf066-e534-479d-9532-c3c088d3c9e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204205Z:dd7da4d2-a4af-4795-a104-ea792a235ed9" + "WESTUS2:20171206T000030Z:196cf066-e534-479d-9532-c3c088d3c9e6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -319,7 +325,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:42:43 GMT" + "Wed, 06 Dec 2017 00:00:59 GMT" ], "Pragma": [ "no-cache" @@ -334,96 +340,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "207d042d-16fb-4ec7-93cc-e8e07db0d561" + "60e0f495-ccbd-4134-806e-aad68f1561fd" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "a1b418b2-4dbe-4943-825d-c3cc4019f177" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204243Z:a1b418b2-4dbe-4943-825d-c3cc4019f177" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 18 Oct 2016 20:43:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9eef1a44-6d12-42d6-a489-f74b6ae08ad6" - ], - "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-content-type-options": [ + "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14999" ], "x-ms-correlation-request-id": [ - "87391c22-d205-4d80-bc64-dcdf51da221c" + "67c9cda9-9463-42b9-9f36-b0e7941f3133" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204314Z:87391c22-d205-4d80-bc64-dcdf51da221c" + "WESTUS2:20171206T000100Z:67c9cda9-9463-42b9-9f36-b0e7941f3133" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -435,7 +386,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:43:44 GMT" + "Wed, 06 Dec 2017 00:01:30 GMT" ], "Pragma": [ "no-cache" @@ -450,38 +401,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "93bdd796-355f-4ec7-bc09-60f8ddfffedd" + "3187ec65-e690-4bb0-af2b-efa7766defd4" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14998" ], "x-ms-correlation-request-id": [ - "954220ab-d2f0-4a11-b3de-a58de8a3d838" + "feb66c32-03f6-40c0-9b73-7efcf4dfebd3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204344Z:954220ab-d2f0-4a11-b3de-a58de8a3d838" + "WESTUS2:20171206T000130Z:feb66c32-03f6-40c0-9b73-7efcf4dfebd3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +447,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:44:14 GMT" + "Wed, 06 Dec 2017 00:02:00 GMT" ], "Pragma": [ "no-cache" @@ -508,38 +462,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f66eade3-d03f-4f67-95f6-e5048c9e95ad" + "5e5044a3-4608-4dfe-b735-c3231d674e24" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14997" ], "x-ms-correlation-request-id": [ - "4f24606e-401d-4473-9f50-65f51d3e7de1" + "62fdeec1-b214-42db-9a82-4a13c1799f9a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204414Z:4f24606e-401d-4473-9f50-65f51d3e7de1" + "WESTUS2:20171206T000200Z:62fdeec1-b214-42db-9a82-4a13c1799f9a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -551,7 +508,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:44:44 GMT" + "Wed, 06 Dec 2017 00:02:30 GMT" ], "Pragma": [ "no-cache" @@ -566,38 +523,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b1f05881-e3e1-41e0-86ee-524882d118e4" + "5ebc0026-f9d2-4133-8a63-fc3a7dd49aca" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14996" ], "x-ms-correlation-request-id": [ - "6f14fb09-5fae-435b-ae47-c7b3010c1012" + "45fa5897-b5e0-40b2-943a-d22ba32aa9ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204445Z:6f14fb09-5fae-435b-ae47-c7b3010c1012" + "WESTUS2:20171206T000231Z:45fa5897-b5e0-40b2-943a-d22ba32aa9ec" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -609,7 +569,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:45:14 GMT" + "Wed, 06 Dec 2017 00:03:00 GMT" ], "Pragma": [ "no-cache" @@ -624,38 +584,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e266ad58-2194-438e-bc15-dc64ae950046" + "40d6bd09-9bc4-476c-85cd-5cea3785eee8" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14995" ], "x-ms-correlation-request-id": [ - "0264c6b0-6fce-453e-aacc-5cadd570f8b0" + "06f81306-ac6d-4607-995a-c0ca7d5a0b39" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204515Z:0264c6b0-6fce-453e-aacc-5cadd570f8b0" + "WESTUS2:20171206T000301Z:06f81306-ac6d-4607-995a-c0ca7d5a0b39" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -667,7 +630,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:45:45 GMT" + "Wed, 06 Dec 2017 00:03:30 GMT" ], "Pragma": [ "no-cache" @@ -682,38 +645,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "54de130c-d30f-41e5-b570-ceb61a30f267" + "c1ac1a55-efee-438e-b9de-718dca013d5c" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14994" ], "x-ms-correlation-request-id": [ - "b316e4c9-56b9-4346-9f55-7f694e3d9e4b" + "9ca26e51-b674-4617-ad6e-247970c8249a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204545Z:b316e4c9-56b9-4346-9f55-7f694e3d9e4b" + "WESTUS2:20171206T000331Z:9ca26e51-b674-4617-ad6e-247970c8249a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +691,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:46:15 GMT" + "Wed, 06 Dec 2017 00:04:01 GMT" ], "Pragma": [ "no-cache" @@ -740,38 +706,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "58eb8de4-01e0-4892-a0b6-27c5a018daa7" + "96511fcb-f775-472c-8db5-90c01ac41332" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14993" ], "x-ms-correlation-request-id": [ - "9c07200d-217a-49a9-ab7f-3a33a2ab6d24" + "6e7daa5c-83fc-4ec8-92fb-01d406f63de7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204616Z:9c07200d-217a-49a9-ab7f-3a33a2ab6d24" + "WESTUS2:20171206T000401Z:6e7daa5c-83fc-4ec8-92fb-01d406f63de7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -783,7 +752,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:46:45 GMT" + "Wed, 06 Dec 2017 00:04:30 GMT" ], "Pragma": [ "no-cache" @@ -798,38 +767,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9518af54-2e45-49dd-80de-caedda8e25fc" + "4468124b-70de-4559-a6be-ae90b2df0b01" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14992" ], "x-ms-correlation-request-id": [ - "8a68bda1-ed65-4903-b108-ed6bb8681689" + "9bad5559-a4ca-4ece-9bcd-53d372203efc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204646Z:8a68bda1-ed65-4903-b108-ed6bb8681689" + "WESTUS2:20171206T000431Z:9bad5559-a4ca-4ece-9bcd-53d372203efc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -841,7 +813,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:47:16 GMT" + "Wed, 06 Dec 2017 00:05:01 GMT" ], "Pragma": [ "no-cache" @@ -856,38 +828,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3e657cd9-3fba-4465-8fe3-65c9d8739d21" + "6a096f82-1505-4bdc-a0ba-fe2d26e3172c" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14991" ], "x-ms-correlation-request-id": [ - "b4b4475e-6979-48db-a2c9-c16842ff6761" + "4de543a2-1a4a-44df-887f-5b21237ffa92" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204716Z:b4b4475e-6979-48db-a2c9-c16842ff6761" + "WESTUS2:20171206T000501Z:4de543a2-1a4a-44df-887f-5b21237ffa92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -899,7 +874,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:47:47 GMT" + "Wed, 06 Dec 2017 00:05:31 GMT" ], "Pragma": [ "no-cache" @@ -914,38 +889,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "15a8ecd4-2707-4227-9069-98408eeb4982" + "0250ea4a-fe7b-4077-8fb2-f47a8a2ec74f" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14990" ], "x-ms-correlation-request-id": [ - "eea57d79-3fd7-4415-b50d-40e82409084a" + "dfa54453-1c18-44f4-93c5-bcd22a3d4855" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204747Z:eea57d79-3fd7-4415-b50d-40e82409084a" + "WESTUS2:20171206T000532Z:dfa54453-1c18-44f4-93c5-bcd22a3d4855" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -957,7 +935,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:48:17 GMT" + "Wed, 06 Dec 2017 00:06:01 GMT" ], "Pragma": [ "no-cache" @@ -972,38 +950,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8d6c1f88-3e0c-4964-9e30-4f49350e5bf5" + "c00c933f-7c6c-40a8-8992-8f700f6acb4b" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14989" ], "x-ms-correlation-request-id": [ - "9d4b8435-e6de-46bf-af07-188f609f643e" + "1e905f14-9cac-45af-9fb8-989cff317683" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204817Z:9d4b8435-e6de-46bf-af07-188f609f643e" + "WESTUS2:20171206T000602Z:1e905f14-9cac-45af-9fb8-989cff317683" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1015,7 +996,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:48:47 GMT" + "Wed, 06 Dec 2017 00:06:31 GMT" ], "Pragma": [ "no-cache" @@ -1030,38 +1011,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f63fa384-7277-403e-bea9-9ee971937e47" + "d877bb78-9527-4ea3-bcc7-602d1a4f5196" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14988" ], "x-ms-correlation-request-id": [ - "55d13bad-b7e2-47e1-ae88-eea2993b7a94" + "d6dd6161-362b-47ba-8976-29c6140a44f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204847Z:55d13bad-b7e2-47e1-ae88-eea2993b7a94" + "WESTUS2:20171206T000632Z:d6dd6161-362b-47ba-8976-29c6140a44f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1073,7 +1057,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:49:17 GMT" + "Wed, 06 Dec 2017 00:07:01 GMT" ], "Pragma": [ "no-cache" @@ -1088,38 +1072,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "686b7b30-b855-42e2-ac3a-615645ab5833" + "e42b02f5-cf9a-486d-8803-f6ee922fac80" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14986" ], "x-ms-correlation-request-id": [ - "bc30a0ec-38c6-420f-a855-c5d9213e931c" + "a6681357-62e5-4e83-a33c-a41eaff1f815" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204918Z:bc30a0ec-38c6-420f-a855-c5d9213e931c" + "WESTUS2:20171206T000702Z:a6681357-62e5-4e83-a33c-a41eaff1f815" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1131,7 +1118,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:49:47 GMT" + "Wed, 06 Dec 2017 00:07:31 GMT" ], "Pragma": [ "no-cache" @@ -1146,38 +1133,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3ae58965-2e01-4cc3-b45b-0987f18414ad" + "2782364e-3e78-4611-b0b3-433ecfcad832" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14985" ], "x-ms-correlation-request-id": [ - "b9927bdb-f3d5-4071-a36f-676eab192c4b" + "3a41e32a-533a-45a3-91da-dc3c9b7bc9df" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T204948Z:b9927bdb-f3d5-4071-a36f-676eab192c4b" + "WESTUS2:20171206T000732Z:3a41e32a-533a-45a3-91da-dc3c9b7bc9df" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1189,7 +1179,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:50:18 GMT" + "Wed, 06 Dec 2017 00:08:02 GMT" ], "Pragma": [ "no-cache" @@ -1204,38 +1194,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "17c702f1-e433-45a1-b35d-f3478435119a" + "4b7b775f-aeba-47b1-a5f0-5e7dcf5e830c" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14984" ], "x-ms-correlation-request-id": [ - "d4855021-8a77-4245-8f26-bdd89dd2f689" + "3c44fe9a-29ed-457c-9f7c-cd4b3fdcb39a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205018Z:d4855021-8a77-4245-8f26-bdd89dd2f689" + "WESTUS2:20171206T000802Z:3c44fe9a-29ed-457c-9f7c-cd4b3fdcb39a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1247,7 +1240,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:50:49 GMT" + "Wed, 06 Dec 2017 00:08:32 GMT" ], "Pragma": [ "no-cache" @@ -1262,38 +1255,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d5c9c4bb-6649-48da-ba4f-ff7a8a35237f" + "122a333e-745d-46c6-b5c1-61fbd8d6322e" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14983" ], "x-ms-correlation-request-id": [ - "a6917e86-a86a-483b-a88d-85e13b564635" + "34d9520a-35cb-4dca-a43f-4aea0aac4a0b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205049Z:a6917e86-a86a-483b-a88d-85e13b564635" + "WESTUS2:20171206T000832Z:34d9520a-35cb-4dca-a43f-4aea0aac4a0b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus1618021181.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus1618021181.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1305,7 +1301,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:51:19 GMT" + "Wed, 06 Dec 2017 00:09:03 GMT" ], "Pragma": [ "no-cache" @@ -1320,44 +1316,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "57658e2f-030e-42dc-bfb2-0b2a3b55ae3c" + "e045ea24-f1bd-41c3-a271-81e47eca00dd" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14982" ], "x-ms-correlation-request-id": [ - "6cbd494f-bc1b-4b66-b44f-dbb665f58416" + "38d8109e-3504-41e6-89c9-320f0b28f24d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205119Z:6cbd494f-bc1b-4b66-b44f-dbb665f58416" + "WESTUS2:20171206T000903Z:38d8109e-3504-41e6-89c9-320f0b28f24d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fe68b56-8426-4d43-8dde-8b8549f1cbaa" + "0142479e-a5af-4157-9b8a-edd7e61d339d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunny-scheduling-dv23348.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus1618021181.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus1618021181.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisSchedules8768.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1369,7 +1368,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:51:19 GMT" + "Wed, 06 Dec 2017 00:09:04 GMT" ], "Pragma": [ "no-cache" @@ -1384,29 +1383,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b900ba04-15e4-47bb-a108-9773c14e067f" + "5bc917fc-2510-432c-b2b5-1a953e2587ae" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14981" ], "x-ms-correlation-request-id": [ - "ac068ad1-e76b-42ad-8d9a-ca97b3c82b11" + "68905f1a-ca79-489b-a305-984e87631c44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205119Z:ac068ad1-e76b-42ad-8d9a-ca97b3c82b11" + "WESTUS2:20171206T000904Z:68905f1a-ca79-489b-a305-984e87631c44" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348/patchSchedules/default?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wNC0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768/patchSchedules/default?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1417,17 +1419,17 @@ "297" ], "x-ms-client-request-id": [ - "129eb980-eec8-477f-add6-8fd6822b2403" + "da2e3a52-b7b3-4e9f-b659-25a11efa7673" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348/patchSchedules/default\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768/patchSchedules/default\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1439,7 +1441,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:51:20 GMT" + "Wed, 06 Dec 2017 00:09:05 GMT" ], "Pragma": [ "no-cache" @@ -1454,44 +1456,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6428a6e2-8728-4795-9fa1-3fb9761050ff" + "0d324e2d-e8ca-4679-9337-470ea67fd792" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "be065bec-be2e-4566-906a-1560b1f72b35" + "4576a750-3312-4d71-bfa9-50f11dcd00a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205120Z:be065bec-be2e-4566-906a-1560b1f72b35" + "WESTUS2:20171206T000905Z:4576a750-3312-4d71-bfa9-50f11dcd00a4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348/patchSchedules/default?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wNC0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768/patchSchedules/default?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e43b83da-5ede-4fc4-ab61-eed9267477e7" + "587cd8e8-7643-4823-b620-487a5f9fda8e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348/patchSchedules/default\",\r\n \"location\": \"Japan West\",\r\n \"name\": \"sunny-scheduling-dv23348/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768/patchSchedules/default\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisSchedules8768/default\",\r\n \"type\": \"Microsoft.Cache/Redis/PatchSchedules\",\r\n \"properties\": {\r\n \"scheduleEntries\": [\r\n {\r\n \"dayOfWeek\": \"Monday\",\r\n \"startHourUtc\": 10,\r\n \"maintenanceWindow\": \"PT10H\"\r\n },\r\n {\r\n \"dayOfWeek\": \"Tuesday\",\r\n \"startHourUtc\": 11,\r\n \"maintenanceWindow\": \"PT11H\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1503,7 +1508,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:51:20 GMT" + "Wed, 06 Dec 2017 00:09:05 GMT" ], "Pragma": [ "no-cache" @@ -1518,47 +1523,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03e4e42a-74a2-49fd-96bb-383ca46542ab" + "5e93ad45-c6d4-4d94-b5ef-8a7e7e9f72e4" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14980" ], "x-ms-correlation-request-id": [ - "d8c4454d-4421-40c2-9924-dd7651bb25ea" + "3b92857d-2359-4679-a8d6-c4dffae7fa3c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205120Z:d8c4454d-4421-40c2-9924-dd7651bb25ea" + "WESTUS2:20171206T000905Z:3b92857d-2359-4679-a8d6-c4dffae7fa3c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348/patchSchedules/default?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wNC0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768/patchSchedules/default?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53f2f4a-2ce7-426b-8bc1-c6d98b161e4b" + "e7ffe616-60e0-4855-a949-001271e2d2a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"There are no patch schedules found for redis cache 'sunny-scheduling-dv23348'.\\r\\nRequestID=1f486726-9709-449b-9d13-789214a2aa1a\",\r\n \"target\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"There are no patch schedules found for redis cache 'RedisSchedules8768'.\\r\\nRequestID=cd71f1dc-875f-4597-8c24-0d7b79fdb847\",\r\n \"target\": null\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "192" + "186" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1570,7 +1578,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:51:21 GMT" + "Wed, 06 Dec 2017 00:09:06 GMT" ], "Pragma": [ "no-cache" @@ -1579,41 +1587,44 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1f486726-9709-449b-9d13-789214a2aa1a" + "cd71f1dc-875f-4597-8c24-0d7b79fdb847" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14979" ], "x-ms-correlation-request-id": [ - "0434a047-461d-4425-987b-b2646bb47754" + "1e917e7f-00f3-4c76-a619-5bdba4bb0163" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205121Z:0434a047-461d-4425-987b-b2646bb47754" + "WESTUS2:20171206T000906Z:1e917e7f-00f3-4c76-a619-5bdba4bb0163" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRGsunnyjapan7857/providers/Microsoft.Cache/Redis/sunny-scheduling-dv23348/patchSchedules/default?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSR3N1bm55amFwYW43ODU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvc3Vubnktc2NoZWR1bGluZy1kdjIzMzQ4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wNC0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisSchedules488/providers/Microsoft.Cache/Redis/RedisSchedules8768/patchSchedules/default?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzU2NoZWR1bGVzNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvUmVkaXMvUmVkaXNTY2hlZHVsZXM4NzY4L3BhdGNoU2NoZWR1bGVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06d691eb-c93a-4b93-a0c8-ec6e57160d6d" + "dc96392d-1f09-4140-a137-b53c66ecb375" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, "ResponseBody": "", @@ -1628,7 +1639,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:51:20 GMT" + "Wed, 06 Dec 2017 00:09:05 GMT" ], "Pragma": [ "no-cache" @@ -1637,22 +1648,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4c0f5ace-d033-4534-869b-98a484474c5a" + "4ee4ddfa-32dd-4341-81e2-d2a415e19f8d" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "706528b6-f030-4608-a4e8-6a5d74b3d4d6" + "11789c63-d465-45bd-b727-197598997d54" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T205121Z:706528b6-f030-4608-a4e8-6a5d74b3d4d6" + "WESTUS2:20171206T000906Z:11789c63-d465-45bd-b727-197598997d54" ] }, "StatusCode": 200 @@ -1660,11 +1674,11 @@ ], "Names": { "PatchSchedules_PutGetDelete": [ - "redisCacheRGsunnyjapan7857", - "sunny-scheduling-dv23348" + "RedisSchedules488", + "RedisSchedules8768" ] }, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.RebootFunctionalTests/RebootBothNodesTest.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.RebootFunctionalTests/RebootBothNodesTest.json index e10d130622da..e1c929a219b2 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.RebootFunctionalTests/RebootBothNodesTest.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.RebootFunctionalTests/RebootBothNodesTest.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bba8b4ca-74ce-4b60-88f8-285f8644275a" + "fd57462f-724a-4859-86b9-3020aed15933" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +29,14 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:11:05 GMT" + "Tue, 05 Dec 2017 22:39:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +44,13 @@ "1199" ], "x-ms-request-id": [ - "62274699-eb35-49fd-bf87-9533066e0d1b" + "14a6af4e-5fec-42e0-a87d-013b9d45075e" ], "x-ms-correlation-request-id": [ - "62274699-eb35-49fd-bf87-9533066e0d1b" + "14a6af4e-5fec-42e0-a87d-013b9d45075e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201106Z:62274699-eb35-49fd-bf87-9533066e0d1b" + "WESTUS2:20171205T223929Z:14a6af4e-5fec-42e0-a87d-013b9d45075e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,23 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bcbb585-65b0-477c-9e6d-02fd22862868" + "7cdec94f-8b56-4558-ac9b-567440f92305" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +87,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:11:05 GMT" + "Tue, 05 Dec 2017 22:39:28 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-request-id": [ - "8ef6052f-b4cd-4f07-99b2-ed79fcb1f484" + "e3135f60-f04a-4f1a-8edc-bbed942ad064" ], "x-ms-correlation-request-id": [ - "8ef6052f-b4cd-4f07-99b2-ed79fcb1f484" + "e3135f60-f04a-4f1a-8edc-bbed942ad064" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201106Z:8ef6052f-b4cd-4f07-99b2-ed79fcb1f484" + "WESTUS2:20171205T223929Z:e3135f60-f04a-4f1a-8edc-bbed942ad064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,32 +114,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/redisCacheRG8181?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVSRzgxODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisReboot4411?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzUmVib290NDQxMT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "37" ], "x-ms-client-request-id": [ - "18c99a98-e45d-4ab8-b0eb-1fddfd234ad3" + "007d24d2-05b6-47c2-aeea-7e1f8ddc5ff8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181\",\r\n \"name\": \"redisCacheRG8181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411\",\r\n \"name\": \"RedisReboot4411\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "185" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -148,7 +151,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:11:07 GMT" + "Tue, 05 Dec 2017 22:39:42 GMT" ], "Pragma": [ "no-cache" @@ -157,13 +160,13 @@ "1198" ], "x-ms-request-id": [ - "5975810e-64b1-438c-80f6-03e2ee6d6458" + "20963449-b8b9-4b39-9da8-62764bbfd6db" ], "x-ms-correlation-request-id": [ - "5975810e-64b1-438c-80f6-03e2ee6d6458" + "20963449-b8b9-4b39-9da8-62764bbfd6db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201107Z:5975810e-64b1-438c-80f6-03e2ee6d6458" + "WESTUS2:20171205T223943Z:20963449-b8b9-4b39-9da8-62764bbfd6db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +175,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/redisCacheRG8181?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVSRzgxODE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisReboot4411?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzUmVib290NDQxMT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef0057a8-5106-4ea2-9dc4-a83edff51236" + "a2cede2f-678f-4fa4-b7aa-03b39b75f303" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181\",\r\n \"name\": \"redisCacheRG8181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411\",\r\n \"name\": \"RedisReboot4411\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +203,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:11:07 GMT" + "Tue, 05 Dec 2017 22:39:42 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +212,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-request-id": [ - "3bd801a0-9b4b-460e-91f6-ee0efdaf82d0" + "3f69c8f4-ef83-4ef2-ae85-37aa535abbc4" ], "x-ms-correlation-request-id": [ - "3bd801a0-9b4b-460e-91f6-ee0efdaf82d0" + "3f69c8f4-ef83-4ef2-ae85-37aa535abbc4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201107Z:3bd801a0-9b4b-460e-91f6-ee0efdaf82d0" + "WESTUS2:20171205T223943Z:3f69c8f4-ef83-4ef2-ae85-37aa535abbc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,32 +230,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "143" + "152" ], "x-ms-client-request-id": [ - "dbfcf79a-016f-4b07-9ac2-1efdcf29fc02" + "837489f0-a5de-444e-bf25-b9913bda4526" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"yyfOmditujyuq/BRBMgl06wUT8yiiiuGoTRzYdeMivY=\",\r\n \"secondaryKey\": \"HokLIY+HQarPeX4dklcfpb4Y6HznMF8i0VvOH4LS4ns=\"\r\n },\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"q49njUQFmTfApLjgDuFtzeBehl/0UvTB48pR2N/SfMs=\",\r\n \"secondaryKey\": \"Wxq3lz2pI3PtS70OA+zFg9RaDsU9FhG3iXaQ62KgOVo=\"\r\n },\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "684" + "746" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,50 +267,114 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:11:09 GMT" + "Tue, 05 Dec 2017 22:39:45 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "196ceefe-f8f5-488f-a838-d228710092f3" + "3e5f5ce9-2d62-4e0d-8462-cf3b580f6f59" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "7a459137-b23d-421e-855e-f18c2c2be690" + "35ca3936-dfe0-4ccc-823c-b9e7e673bd29" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201109Z:7a459137-b23d-421e-855e-f18c2c2be690" + "WESTUS2:20171205T223946Z:35ca3936-dfe0-4ccc-823c-b9e7e673bd29" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:40:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fd7ccd06-0282-4ba1-b05b-b1e9ff057bde" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "0dd74231-0ccc-4bd5-9067-6aa30e1f08cb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224016Z:0dd74231-0ccc-4bd5-9067-6aa30e1f08cb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -319,7 +386,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:11:39 GMT" + "Tue, 05 Dec 2017 22:40:45 GMT" ], "Pragma": [ "no-cache" @@ -334,38 +401,407 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8a101b88-c874-4801-a4d2-3c863f2c679d" + "5646fd36-e513-41e5-a32a-abf133179783" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "a4b418a8-cf90-44c3-a22d-6e82ac3b764e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224046Z:a4b418a8-cf90-44c3-a22d-6e82ac3b764e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:41:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "32bfe72a-6cab-40aa-9296-31b89706e67c" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "ce2cc827-4046-41f3-b964-3a0119b1c03f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224116Z:ce2cc827-4046-41f3-b964-3a0119b1c03f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:41:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "24ec56a4-b058-4ceb-bdfb-a50740366289" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "85fa83b6-94d4-4505-816f-f5edc0ab4b36" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224146Z:85fa83b6-94d4-4505-816f-f5edc0ab4b36" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:42:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2de475ab-c7e0-4338-ac34-c561f934f121" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "9898f774-0d4e-4714-bf2b-ae123ffa9258" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224216Z:9898f774-0d4e-4714-bf2b-ae123ffa9258" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:42:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c5d5b86e-f8ff-45fc-9153-426d018bbe49" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "9efc273c-b03a-497c-ac0b-a73b08b47a75" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224246Z:9efc273c-b03a-497c-ac0b-a73b08b47a75" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:43:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "148b760a-c307-4ccc-b7df-cde706af855d" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "c8b34091-b0fa-4719-9b19-d96089878b38" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224316Z:c8b34091-b0fa-4719-9b19-d96089878b38" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:43:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c44337bc-774c-4d7a-8ec9-79e84d613dd3" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14991" ], "x-ms-correlation-request-id": [ - "1a98fecb-7a13-43b1-92a2-6dab281f2465" + "fabbb42a-7dfb-4b0b-81b9-5f5a5701e0c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201139Z:1a98fecb-7a13-43b1-92a2-6dab281f2465" + "WESTUS2:20171205T224346Z:fabbb42a-7dfb-4b0b-81b9-5f5a5701e0c8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +813,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:12:09 GMT" + "Tue, 05 Dec 2017 22:44:16 GMT" ], "Pragma": [ "no-cache" @@ -392,38 +828,102 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6d91012-d2a0-4fb2-99a6-e44a8a712564" + "c858481e-b3e6-482f-a28b-c90c5b048f47" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "4d21c6c9-93ec-40e9-8065-654104592e97" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171205T224417Z:4d21c6c9-93ec-40e9-8065-654104592e97" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 05 Dec 2017 22:44:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7534a499-5771-4456-af20-028d8fbeac60" + ], + "x-rp-server-mvid": [ + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "14989" ], "x-ms-correlation-request-id": [ - "15f58431-1329-46f8-b556-da119602aadd" + "2fc33494-a7a6-4b0e-aed7-ba38b9a5ca6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201209Z:15f58431-1329-46f8-b556-da119602aadd" + "WESTUS2:20171205T224447Z:2fc33494-a7a6-4b0e-aed7-ba38b9a5ca6c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -435,7 +935,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:12:39 GMT" + "Tue, 05 Dec 2017 22:45:16 GMT" ], "Pragma": [ "no-cache" @@ -450,38 +950,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26e3edfb-6fff-4297-98d8-0a554bceb58e" + "fb7783d9-2579-4694-a69a-1766b37654d6" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14988" ], "x-ms-correlation-request-id": [ - "fe954a0a-03f9-4a3d-b57f-20cc9b402a0d" + "1f7d5e80-e217-4333-8552-40c94e586b30" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201239Z:fe954a0a-03f9-4a3d-b57f-20cc9b402a0d" + "WESTUS2:20171205T224517Z:1f7d5e80-e217-4333-8552-40c94e586b30" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +996,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:13:09 GMT" + "Tue, 05 Dec 2017 22:45:46 GMT" ], "Pragma": [ "no-cache" @@ -508,38 +1011,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dc21c1c3-a22b-4b66-9dd6-7ecf31a9e21a" + "0d2d731b-f435-4a22-adbf-b7c0b7e354d5" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-correlation-request-id": [ - "b4844d0b-7956-4fd4-83a2-e58f93389792" + "c2b771e0-b300-4f69-a5e5-2846b6ba2718" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201309Z:b4844d0b-7956-4fd4-83a2-e58f93389792" + "WESTUS2:20171205T224547Z:c2b771e0-b300-4f69-a5e5-2846b6ba2718" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -551,7 +1057,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:13:39 GMT" + "Tue, 05 Dec 2017 22:46:17 GMT" ], "Pragma": [ "no-cache" @@ -566,38 +1072,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b8846693-8485-4449-b336-e58687421812" + "a916e92f-af6c-4124-8d25-69849927e0db" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14986" ], "x-ms-correlation-request-id": [ - "31b045a3-8969-48e2-8898-1a5e2c452a30" + "b9bb332d-eaa3-4e12-8719-c72a41fc4cca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201340Z:31b045a3-8969-48e2-8898-1a5e2c452a30" + "WESTUS2:20171205T224617Z:b9bb332d-eaa3-4e12-8719-c72a41fc4cca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -609,7 +1118,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:14:09 GMT" + "Tue, 05 Dec 2017 22:46:47 GMT" ], "Pragma": [ "no-cache" @@ -624,38 +1133,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3ec6f0ee-176c-4564-9e5f-ea636df23e71" + "ac7b1976-5916-404a-977e-30386a3d1507" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14985" ], "x-ms-correlation-request-id": [ - "df358b50-9652-4aac-9cd6-aa2b7e2a5cd7" + "da926b5f-c1d4-4a18-9065-0e2fd90cd77d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201410Z:df358b50-9652-4aac-9cd6-aa2b7e2a5cd7" + "WESTUS2:20171205T224647Z:da926b5f-c1d4-4a18-9065-0e2fd90cd77d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -667,7 +1179,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:14:39 GMT" + "Tue, 05 Dec 2017 22:47:18 GMT" ], "Pragma": [ "no-cache" @@ -682,38 +1194,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d4b0a9a9-0ab0-41cf-9e42-714c76c36258" + "13708b64-3cfd-4f63-9cf8-6ca6d609aa26" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14984" ], "x-ms-correlation-request-id": [ - "b2baa2ce-5223-4f5a-a51d-3b4c5196e434" + "ef933358-d990-421b-b5bd-5044d8d03752" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201440Z:b2baa2ce-5223-4f5a-a51d-3b4c5196e434" + "WESTUS2:20171205T224719Z:ef933358-d990-421b-b5bd-5044d8d03752" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +1240,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:15:09 GMT" + "Tue, 05 Dec 2017 22:47:48 GMT" ], "Pragma": [ "no-cache" @@ -740,38 +1255,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f350bac8-7b18-41ff-983c-3bcc0788f839" + "ac52b21e-733d-4fd3-9b3f-59debbb24209" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14983" ], "x-ms-correlation-request-id": [ - "9cb1de58-3569-4e5e-96ed-f15f27be6b99" + "8753cebc-649f-4b16-bcdb-b2d6f9d746c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201510Z:9cb1de58-3569-4e5e-96ed-f15f27be6b99" + "WESTUS2:20171205T224749Z:8753cebc-649f-4b16-bcdb-b2d6f9d746c8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -783,7 +1301,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:15:40 GMT" + "Tue, 05 Dec 2017 22:48:19 GMT" ], "Pragma": [ "no-cache" @@ -798,38 +1316,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0e403491-89fe-40e3-8657-610e375dd175" + "ed9ceec2-382d-485a-952e-56275eb534a3" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14982" ], "x-ms-correlation-request-id": [ - "3ee9273c-f607-48c0-94f1-75a3f960362d" + "1287aac9-e2bd-4d00-a0e6-8f884a5ee7bb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201540Z:3ee9273c-f607-48c0-94f1-75a3f960362d" + "WESTUS2:20171205T224819Z:1287aac9-e2bd-4d00-a0e6-8f884a5ee7bb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -841,7 +1362,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:16:10 GMT" + "Tue, 05 Dec 2017 22:48:49 GMT" ], "Pragma": [ "no-cache" @@ -856,38 +1377,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c7f17415-9d90-4cd8-a25d-f1c8c24b0d49" + "f70907ba-bdf3-4978-bdde-0afa77bbcc1f" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14981" ], "x-ms-correlation-request-id": [ - "df99e12d-fe07-4ff6-9084-6dcef0df19f4" + "17aa8843-5123-463b-82e9-4b2843597b58" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201610Z:df99e12d-fe07-4ff6-9084-6dcef0df19f4" + "WESTUS2:20171205T224849Z:17aa8843-5123-463b-82e9-4b2843597b58" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -899,7 +1423,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:16:40 GMT" + "Tue, 05 Dec 2017 22:49:19 GMT" ], "Pragma": [ "no-cache" @@ -914,38 +1438,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1e2a4048-1fb3-4ea3-9b43-7bcebcc2ba91" + "55791afa-703d-44c5-b634-71f476e8fce2" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14980" ], "x-ms-correlation-request-id": [ - "23422b6a-1367-4c26-863c-9cc09a8a2f09" + "464463ab-7092-434a-be65-09d1b8474d4c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201640Z:23422b6a-1367-4c26-863c-9cc09a8a2f09" + "WESTUS2:20171205T224920Z:464463ab-7092-434a-be65-09d1b8474d4c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -957,7 +1484,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:17:10 GMT" + "Tue, 05 Dec 2017 22:49:50 GMT" ], "Pragma": [ "no-cache" @@ -972,38 +1499,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4d331696-bb37-41a8-b689-c2aedc053614" + "dd342a4d-dbf9-47b1-922c-f696eaeccc8a" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14979" ], "x-ms-correlation-request-id": [ - "5d8b01bf-d4f4-4a8f-ab35-ab6844faa158" + "4076b3e6-11c6-4b48-b9b0-0e4fdaed816e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201710Z:5d8b01bf-d4f4-4a8f-ab35-ab6844faa158" + "WESTUS2:20171205T224950Z:4076b3e6-11c6-4b48-b9b0-0e4fdaed816e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL3JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus3240421995.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus3240421995.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1015,7 +1545,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:17:40 GMT" + "Tue, 05 Dec 2017 22:50:20 GMT" ], "Pragma": [ "no-cache" @@ -1030,44 +1560,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa659a19-3cce-48cd-aa9b-6fd5021cfde6" + "39954ebe-fef7-4e85-812f-6983ffcf905b" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14978" ], "x-ms-correlation-request-id": [ - "bbab9701-1caa-4165-b628-11fad9bbf76d" + "8eb336d4-ce5c-4e04-a5cf-7591d1c85afa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201741Z:bbab9701-1caa-4165-b628-11fad9bbf76d" + "WESTUS2:20171205T225021Z:8eb336d4-ce5c-4e04-a5cf-7591d1c85afa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwP2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL1JlZGlzUmVib290NDcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd79678-8dd3-42c6-950f-1adfe5292ec6" + "4258811a-7963-4ae9-8d28-a90ab9117c55" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910\",\r\n \"location\": \"West US\",\r\n \"name\": \"sunnyprimary9910\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"sunnyprimary9910.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisReboot470\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"family\": \"P\",\r\n \"capacity\": 1\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus3240421995.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus3240421995.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"7500\",\r\n \"maxmemory-reserved\": \"200\",\r\n \"maxfragmentationmemory-reserved\": \"300\",\r\n \"maxmemory-delta\": \"200\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisReboot470.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1079,7 +1612,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:17:40 GMT" + "Tue, 05 Dec 2017 22:50:21 GMT" ], "Pragma": [ "no-cache" @@ -1094,29 +1627,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "14816d0f-9f22-4d8d-b128-955bcc5b8ebf" + "9ccbec61-040c-4db2-923c-caa83ca3238b" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14977" ], "x-ms-correlation-request-id": [ - "f82f9a48-fc1a-4b44-8a1d-4a7d6630ad5b" + "eb22d638-f958-4323-9016-582596abf512" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201741Z:f82f9a48-fc1a-4b44-8a1d-4a7d6630ad5b" + "WESTUS2:20171205T225022Z:eb22d638-f958-4323-9016-582596abf512" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG8181/providers/Microsoft.Cache/Redis/sunnyprimary9910/forceReboot?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JlZGlzQ2FjaGVSRzgxODEvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9zdW5ueXByaW1hcnk5OTEwL2ZvcmNlUmVib290P2FwaS12ZXJzaW9uPTIwMTYtMDQtMDE=", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisReboot4411/providers/Microsoft.Cache/Redis/RedisReboot470/forceReboot?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzUmVib290NDQxMS9wcm92aWRlcnMvTWljcm9zb2Z0LkNhY2hlL1JlZGlzL1JlZGlzUmVib290NDcwL2ZvcmNlUmVib290P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"rebootType\": \"AllNodes\"\r\n}", "RequestHeaders": { @@ -1127,17 +1663,17 @@ "32" ], "x-ms-client-request-id": [ - "75df916a-2db4-4989-a702-a4ecf347f553" + "816fd809-f1d9-454c-ba10-8f9dea69e330" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/4.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"Message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", + "ResponseBody": "{\r\n \"message\": \"The requested reboot operation for 'AllNodes' has been successfully scheduled and should be executed shortly.\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1149,7 +1685,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 20:17:46 GMT" + "Tue, 05 Dec 2017 22:50:26 GMT" ], "Pragma": [ "no-cache" @@ -1164,22 +1700,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8a869f6a-92a4-4d04-963c-d21618a23fc7" + "160f7577-c340-4860-b4fc-9381ac10c566" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "deec238c-04ac-4a52-945a-45127d3e3785" + "19d9bc92-e667-400d-b03a-796ebeabbecd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T201747Z:deec238c-04ac-4a52-945a-45127d3e3785" + "WESTUS2:20171205T225027Z:19d9bc92-e667-400d-b03a-796ebeabbecd" ] }, "StatusCode": 200 @@ -1187,11 +1726,11 @@ ], "Names": { "RebootBothNodesTest": [ - "redisCacheRG8181", - "sunnyprimary9910" + "RedisReboot4411", + "RedisReboot470" ] }, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixture/.ctor.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixture/.ctor.json index bccb3478098e..206d41cd5168 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixture/.ctor.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixture/.ctor.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f1bf876-906d-4cb4-a207-e96d397978c0" + "8037d4b0-6ea5-4114-a12d-fb9483d52a2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +29,28 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:21:44 GMT" + "Tue, 05 Dec 2017 22:50:38 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "8625d3d5-1f3f-4194-9d49-9f7cf413d802" + "5af3b752-be53-40f5-a045-0974762aba32" ], "x-ms-correlation-request-id": [ - "8625d3d5-1f3f-4194-9d49-9f7cf413d802" + "5af3b752-be53-40f5-a045-0974762aba32" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012144Z:8625d3d5-1f3f-4194-9d49-9f7cf413d802" + "WESTUS2:20171205T225038Z:5af3b752-be53-40f5-a045-0974762aba32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,23 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44aa7cec-9b89-489b-a0e7-439b4910f750" + "976af5ed-1f54-46a0-9c4a-2f13e51c6d12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +87,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:21:44 GMT" + "Tue, 05 Dec 2017 22:50:38 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14998" ], "x-ms-request-id": [ - "c0f4dcec-e5b6-4e48-9ef6-8cfcf2429643" + "377f2413-30e3-43b9-bed7-d1a724a45cba" ], "x-ms-correlation-request-id": [ - "c0f4dcec-e5b6-4e48-9ef6-8cfcf2429643" + "377f2413-30e3-43b9-bed7-d1a724a45cba" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012144Z:c0f4dcec-e5b6-4e48-9ef6-8cfcf2429643" + "WESTUS2:20171205T225038Z:377f2413-30e3-43b9-bed7-d1a724a45cba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,32 +114,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/redisCacheRG5319?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisCreateUpdate3324?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "064e37fd-1f3c-4e6f-a9b6-fa9eb9018948" + "dac9ffa6-72ff-470b-ae48-4e19fd181faf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319\",\r\n \"name\": \"redisCacheRG5319\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324\",\r\n \"name\": \"RedisCreateUpdate3324\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "193" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -148,22 +151,22 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:21:45 GMT" + "Tue, 05 Dec 2017 22:50:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "9629f106-43ef-4d1a-8a2d-c927cf439383" + "a36c7a70-ac52-48ff-9205-0d45571d38d6" ], "x-ms-correlation-request-id": [ - "9629f106-43ef-4d1a-8a2d-c927cf439383" + "a36c7a70-ac52-48ff-9205-0d45571d38d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012145Z:9629f106-43ef-4d1a-8a2d-c927cf439383" + "WESTUS2:20171205T225040Z:a36c7a70-ac52-48ff-9205-0d45571d38d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +175,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/redisCacheRG5319?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JlZGlzQ2FjaGVSRzUzMTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisCreateUpdate3324?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzQ3JlYXRlVXBkYXRlMzMyND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29025307-596a-43be-bd26-90c45a8950dc" + "7e061303-8dc2-4233-a65a-f9284908f95c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/redisCacheRG5319\",\r\n \"name\": \"redisCacheRG5319\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisCreateUpdate3324\",\r\n \"name\": \"RedisCreateUpdate3324\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +203,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 01:21:45 GMT" + "Tue, 05 Dec 2017 22:50:39 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +212,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14997" ], "x-ms-request-id": [ - "4d55fe06-17f9-45b7-a6a8-8e9647a22bcd" + "b767dafe-78f2-4402-9484-ce61d1f3b98c" ], "x-ms-correlation-request-id": [ - "4d55fe06-17f9-45b7-a6a8-8e9647a22bcd" + "b767dafe-78f2-4402-9484-ce61d1f3b98c" ], "x-ms-routing-request-id": [ - "WESTUS2:20161018T012145Z:4d55fe06-17f9-45b7-a6a8-8e9647a22bcd" + "WESTUS2:20171205T225040Z:b767dafe-78f2-4402-9484-ce61d1f3b98c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -229,11 +232,11 @@ ], "Names": { ".ctor": [ - "redisCacheRG5319", - "RCName6405" + "RedisCreateUpdate3324", + "RedisCreateUpdate7534" ] }, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file diff --git a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixtureWithCacheCreate/.ctor.json b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixtureWithCacheCreate/.ctor.json index d6e9cf67a567..76118e287dc3 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixtureWithCacheCreate/.ctor.json +++ b/src/SDKs/RedisCache/RedisCache.Tests/SessionRecords/AzureRedisCache.Tests.TestsFixtureWithCacheCreate/.ctor.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGUvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8072f241-9e7f-4f20-a81b-e3c6f19399c8" + "c75411bf-27e0-463e-a9c4-a7f691aab34a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +29,28 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:20:44 GMT" + "Tue, 05 Dec 2017 23:40:15 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "2868eab3-dea9-435d-999c-5c69eeb2ff9f" + "15f102fa-bf66-4c59-8ddf-ffc573365d9e" ], "x-ms-correlation-request-id": [ - "2868eab3-dea9-435d-999c-5c69eeb2ff9f" + "15f102fa-bf66-4c59-8ddf-ffc573365d9e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072044Z:2868eab3-dea9-435d-999c-5c69eeb2ff9f" + "WESTUS2:20171205T234016Z:15f102fa-bf66-4c59-8ddf-ffc573365d9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,23 +59,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Cache?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/providers/Microsoft.Cache?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FjaGU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11a74899-889f-4ca4-8536-e54180b70382" + "ac5a396f-3d9d-4386-873c-f4fcc7b65667" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/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 ],\r\n \"apiVersions\": [\r\n \"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\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 \"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 ],\r\n \"apiVersions\": [\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/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 \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\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 \"West Europe\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"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 \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"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 },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/metricDefinitions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Redis/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast 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 West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +87,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:20:44 GMT" + "Tue, 05 Dec 2017 23:40:15 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14971" ], "x-ms-request-id": [ - "4445c5b0-725a-4373-8c6c-8b7d50d6fc14" + "7129f36a-677e-4ece-87a6-98e146d3f609" ], "x-ms-correlation-request-id": [ - "4445c5b0-725a-4373-8c6c-8b7d50d6fc14" + "7129f36a-677e-4ece-87a6-98e146d3f609" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072044Z:4445c5b0-725a-4373-8c6c-8b7d50d6fc14" + "WESTUS2:20171205T234016Z:7129f36a-677e-4ece-87a6-98e146d3f609" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,32 +114,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/hydra13012?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL2h5ZHJhMTMwMTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisGetList5965?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2V0TGlzdDU5NjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "baab85b4-7529-40db-b251-bd20caf8dc45" + "455e3242-23de-4f47-94f9-86e02c55b60e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012\",\r\n \"name\": \"hydra13012\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965\",\r\n \"name\": \"RedisGetList5965\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "181" + "192" ], "Content-Type": [ "application/json; charset=utf-8" @@ -148,22 +151,22 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:20:45 GMT" + "Tue, 05 Dec 2017 23:40:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "feb1bbee-fa7c-41fa-a794-f0eba4a4d2bc" + "2c46c194-417d-4378-953f-c99a73aef83c" ], "x-ms-correlation-request-id": [ - "feb1bbee-fa7c-41fa-a794-f0eba4a4d2bc" + "2c46c194-417d-4378-953f-c99a73aef83c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072046Z:feb1bbee-fa7c-41fa-a794-f0eba4a4d2bc" + "WESTUS2:20171205T234017Z:2c46c194-417d-4378-953f-c99a73aef83c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +175,23 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/hydra13012?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL2h5ZHJhMTMwMTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourcegroups/RedisGetList5965?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlZ3JvdXBzL1JlZGlzR2V0TGlzdDU5NjU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a11f62cb-c124-4b1d-9b31-97971f712ec8" + "2335c388-9da7-400d-8732-e04662db062a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012\",\r\n \"name\": \"hydra13012\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965\",\r\n \"name\": \"RedisGetList5965\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +203,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:20:45 GMT" + "Tue, 05 Dec 2017 23:40:17 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +212,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14970" ], "x-ms-request-id": [ - "6c103160-dfcc-47a0-8976-c84262e163fd" + "80d05bfa-0195-4558-9dd7-4841e90e0d36" ], "x-ms-correlation-request-id": [ - "6c103160-dfcc-47a0-8976-c84262e163fd" + "80d05bfa-0195-4558-9dd7-4841e90e0d36" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072046Z:6c103160-dfcc-47a0-8976-c84262e163fd" + "WESTUS2:20171205T234017Z:80d05bfa-0195-4558-9dd7-4841e90e0d36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,32 +230,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n }\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "151" + "150" ], "x-ms-client-request-id": [ - "485b26d2-570c-4da9-8065-071295617f2a" + "69b6bff1-a2bb-4a24-80f0-6859a1720871" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"jJKb/dS6rDAFwDmMVH6NCDx9OdXXzikorbrgpJAQn38=\",\r\n \"secondaryKey\": \"qDTqBnvT8izZ9j/bii51494VH9Y4jBjpVMhsjgJWlY4=\"\r\n },\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": {\r\n \"primaryKey\": \"O3XchMmW9P0x21XGljeiiL0wqbq8z9SVquOd3P+u15M=\",\r\n \"secondaryKey\": \"uY2/xD9NwAijrWxIu3miCoyMN65vsxMMGxgipxaMJxM=\"\r\n },\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "665" + "745" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,50 +267,53 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:20:47 GMT" + "Tue, 05 Dec 2017 23:40:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01" + "https://management.azure.com/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "26191c87-2ac4-4814-a7f0-6d146a86dcb8" + "ab87ed45-45c5-47e2-b72b-4974a5c540c6" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "8e6a712c-3dc7-4077-9523-af8c9f40c8dc" + "749fd5c2-dcfb-48ce-b34a-acb50a5bf25b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072048Z:8e6a712c-3dc7-4077-9523-af8c9f40c8dc" + "WESTUS2:20171205T234036Z:749fd5c2-dcfb-48ce-b34a-acb50a5bf25b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -319,7 +325,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:21:17 GMT" + "Tue, 05 Dec 2017 23:41:05 GMT" ], "Pragma": [ "no-cache" @@ -334,38 +340,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "38435861-60d3-48b8-a03e-f3bc53528996" + "8e691177-426b-48dd-a5cf-1b93f67114a9" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14997" ], "x-ms-correlation-request-id": [ - "90de63c2-757a-4570-82c1-f5c417fc3352" + "8da6333e-c13f-411d-9526-e1612dd6fd01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072118Z:90de63c2-757a-4570-82c1-f5c417fc3352" + "WESTUS2:20171205T234106Z:8da6333e-c13f-411d-9526-e1612dd6fd01" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +386,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:21:47 GMT" + "Tue, 05 Dec 2017 23:41:36 GMT" ], "Pragma": [ "no-cache" @@ -392,38 +401,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75f0d6f8-89df-4145-8425-35ce26820365" + "fc4a6ba0-d946-4ba2-8213-d1de04685874" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14996" ], "x-ms-correlation-request-id": [ - "e40dca21-b229-44ba-8299-95bee881c7ad" + "5063b81e-042c-47d9-8f9c-d71d8076b5c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072148Z:e40dca21-b229-44ba-8299-95bee881c7ad" + "WESTUS2:20171205T234136Z:5063b81e-042c-47d9-8f9c-d71d8076b5c4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -435,7 +447,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:22:17 GMT" + "Tue, 05 Dec 2017 23:42:06 GMT" ], "Pragma": [ "no-cache" @@ -450,38 +462,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "67af644c-fbf4-4465-b99f-e36647e285f7" + "3af7de12-62b7-436f-aeb2-0f121d472c15" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14995" ], "x-ms-correlation-request-id": [ - "a10c0039-b37a-41f6-9ce7-780b0e11431a" + "96ce197e-df3a-4cc5-a8a8-3f1b0a2c1ab3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072218Z:a10c0039-b37a-41f6-9ce7-780b0e11431a" + "WESTUS2:20171205T234206Z:96ce197e-df3a-4cc5-a8a8-3f1b0a2c1ab3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +508,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:22:48 GMT" + "Tue, 05 Dec 2017 23:42:35 GMT" ], "Pragma": [ "no-cache" @@ -508,38 +523,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d41f46be-23df-47eb-98d3-06fe35d99025" + "e3a7dc62-2323-4afd-ac17-544fd451142a" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14994" ], "x-ms-correlation-request-id": [ - "ed09b9dc-8959-416d-9c96-197bca46fdf3" + "43c5f3cb-b1cc-4ed7-8547-eff37a1b0bf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072248Z:ed09b9dc-8959-416d-9c96-197bca46fdf3" + "WESTUS2:20171205T234236Z:43c5f3cb-b1cc-4ed7-8547-eff37a1b0bf0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -551,7 +569,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:23:18 GMT" + "Tue, 05 Dec 2017 23:43:06 GMT" ], "Pragma": [ "no-cache" @@ -566,38 +584,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "379adf7d-e684-4584-9c0b-203457cdc666" + "e954c36b-4c86-4bb9-b2cd-1e33b2c45f3c" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14993" ], "x-ms-correlation-request-id": [ - "c7c2f5bd-4a26-41e6-9d0e-9f21d23cd428" + "aa621836-92da-4b39-b210-78283e89c9e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072318Z:c7c2f5bd-4a26-41e6-9d0e-9f21d23cd428" + "WESTUS2:20171205T234306Z:aa621836-92da-4b39-b210-78283e89c9e0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -609,7 +630,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:23:47 GMT" + "Tue, 05 Dec 2017 23:43:36 GMT" ], "Pragma": [ "no-cache" @@ -624,38 +645,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3662c166-2401-429a-97cb-2480ff817d96" + "0ed7b74e-3597-4ec5-b7e3-d36501c4e275" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14992" ], "x-ms-correlation-request-id": [ - "eadcb56a-c1bc-4c6b-9db1-9dbd2f78bac0" + "e7a7f29a-4fda-4020-b2bc-f4a2988bf4b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072348Z:eadcb56a-c1bc-4c6b-9db1-9dbd2f78bac0" + "WESTUS2:20171205T234336Z:e7a7f29a-4fda-4020-b2bc-f4a2988bf4b4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -667,7 +691,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:24:17 GMT" + "Tue, 05 Dec 2017 23:44:08 GMT" ], "Pragma": [ "no-cache" @@ -682,38 +706,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "24d7e10a-e4cf-4278-8412-c6ff62927a4d" + "72fc80a8-6d59-499f-9a2a-238a28879abb" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14991" ], "x-ms-correlation-request-id": [ - "1f1fe9ec-c3f1-4593-b560-0ec3c038f612" + "25c598cc-da61-4a47-ae6f-4b4ab2c73775" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072418Z:1f1fe9ec-c3f1-4593-b560-0ec3c038f612" + "WESTUS2:20171205T234409Z:25c598cc-da61-4a47-ae6f-4b4ab2c73775" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +752,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:24:48 GMT" + "Tue, 05 Dec 2017 23:44:39 GMT" ], "Pragma": [ "no-cache" @@ -740,38 +767,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a0a8ceb2-d190-415b-a6d0-e7846fc05a65" + "7b96d9d3-b80f-421f-87be-d1b7b702f9d9" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14990" ], "x-ms-correlation-request-id": [ - "fa6ad85d-7e89-46ed-b3d8-c8c272153692" + "09941861-1ab1-467b-86dd-e99b74f441ad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072448Z:fa6ad85d-7e89-46ed-b3d8-c8c272153692" + "WESTUS2:20171205T234439Z:09941861-1ab1-467b-86dd-e99b74f441ad" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -783,7 +813,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:25:18 GMT" + "Tue, 05 Dec 2017 23:45:08 GMT" ], "Pragma": [ "no-cache" @@ -798,38 +828,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "af07c736-8f20-4f8c-9362-621ccbb58e8b" + "b8015a15-aee3-4789-be2f-0df9c9fdbab1" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14989" ], "x-ms-correlation-request-id": [ - "dedf20e5-221b-4c81-9407-1d8eb6f263c3" + "05939450-7a30-4276-9777-3b66c4ab6c89" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072518Z:dedf20e5-221b-4c81-9407-1d8eb6f263c3" + "WESTUS2:20171205T234509Z:05939450-7a30-4276-9777-3b66c4ab6c89" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -841,7 +874,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:25:48 GMT" + "Tue, 05 Dec 2017 23:45:39 GMT" ], "Pragma": [ "no-cache" @@ -856,38 +889,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e7882211-6a43-456a-92bf-bf70e20d9156" + "f9e7eff3-3112-48ba-87f7-73b3209b9c97" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14988" ], "x-ms-correlation-request-id": [ - "02bb010d-6136-4996-ac2d-a0b34f1aae9b" + "d84d95ba-4c06-43db-a220-eacb9d53eac8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072548Z:02bb010d-6136-4996-ac2d-a0b34f1aae9b" + "WESTUS2:20171205T234540Z:d84d95ba-4c06-43db-a220-eacb9d53eac8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -899,7 +935,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:26:18 GMT" + "Tue, 05 Dec 2017 23:46:11 GMT" ], "Pragma": [ "no-cache" @@ -914,38 +950,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ed80edfa-76e4-49d6-803c-e7fc010fe111" + "e2a8b6ad-dbe1-44ce-999b-9ef1a85c0436" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14987" ], "x-ms-correlation-request-id": [ - "952b36e0-bcb0-4acf-aa66-e327ea9223fd" + "5bab1280-8b1f-49ac-afe3-901767ded7e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072619Z:952b36e0-bcb0-4acf-aa66-e327ea9223fd" + "WESTUS2:20171205T234612Z:5bab1280-8b1f-49ac-afe3-901767ded7e4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -957,7 +996,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:26:48 GMT" + "Tue, 05 Dec 2017 23:46:41 GMT" ], "Pragma": [ "no-cache" @@ -972,38 +1011,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a5a48fce-9f94-40e3-be88-6315b1e4fd75" + "901ad8e1-b53d-4e23-8551-dfb41ea4d3b7" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14986" ], "x-ms-correlation-request-id": [ - "5d6c4f17-92d1-44ad-81f0-5855cb5e63c7" + "6a19d31e-2fe3-4141-8494-c218a58c0241" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072649Z:5d6c4f17-92d1-44ad-81f0-5855cb5e63c7" + "WESTUS2:20171205T234642Z:6a19d31e-2fe3-4141-8494-c218a58c0241" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1015,7 +1057,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:27:18 GMT" + "Tue, 05 Dec 2017 23:47:12 GMT" ], "Pragma": [ "no-cache" @@ -1030,38 +1072,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8e4359e0-5389-4183-8917-72dede1e7b82" + "ec4907c8-b2e1-4697-b9f9-8ab479309ebc" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14985" ], "x-ms-correlation-request-id": [ - "9b2b89e8-6661-4644-a8a8-706baa236949" + "9030841f-57e5-4677-ac5f-66f161833ceb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072719Z:9b2b89e8-6661-4644-a8a8-706baa236949" + "WESTUS2:20171205T234712Z:9030841f-57e5-4677-ac5f-66f161833ceb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1073,7 +1118,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:27:48 GMT" + "Tue, 05 Dec 2017 23:47:42 GMT" ], "Pragma": [ "no-cache" @@ -1088,38 +1133,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8291abf1-b720-427d-8e15-adab7bd7584e" + "e3482357-ea5b-4d54-b9a6-72e383ad9734" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14984" ], "x-ms-correlation-request-id": [ - "8186cf88-6450-4584-9002-1ee4eae6d888" + "f3c7dc7f-654b-4227-abf6-79273f93c60d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072749Z:8186cf88-6450-4584-9002-1ee4eae6d888" + "WESTUS2:20171205T234742Z:f3c7dc7f-654b-4227-abf6-79273f93c60d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1131,7 +1179,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:28:19 GMT" + "Tue, 05 Dec 2017 23:48:12 GMT" ], "Pragma": [ "no-cache" @@ -1146,38 +1194,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0dbb1623-3e43-4e89-9128-c6f1f3da22a1" + "fb9ec777-f6c3-4ca1-b7b3-f51afb9d7856" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14983" ], "x-ms-correlation-request-id": [ - "9574f6ed-7752-4d3a-82e8-d1d5f9bc8a7c" + "884d5ca4-aacb-4cb0-a590-a21b5a594404" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072819Z:9574f6ed-7752-4d3a-82e8-d1d5f9bc8a7c" + "WESTUS2:20171205T234812Z:884d5ca4-aacb-4cb0-a590-a21b5a594404" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1189,7 +1240,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:28:48 GMT" + "Tue, 05 Dec 2017 23:48:42 GMT" ], "Pragma": [ "no-cache" @@ -1204,38 +1255,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "22d9603d-d238-41f0-9d17-238d55b8da1a" + "003ce03b-13a0-4194-b461-f546a31635bb" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14982" ], "x-ms-correlation-request-id": [ - "c019e9ea-38d0-4185-b923-08649e72e3dd" + "38b647ae-7806-4fec-a658-19b105bd8da5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072849Z:c019e9ea-38d0-4185-b923-08649e72e3dd" + "WESTUS2:20171205T234842Z:38b647ae-7806-4fec-a658-19b105bd8da5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1247,7 +1301,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:29:19 GMT" + "Tue, 05 Dec 2017 23:49:12 GMT" ], "Pragma": [ "no-cache" @@ -1262,38 +1316,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0d153a85-3214-40fa-b71c-60dbc18f0442" + "6be1112e-7b16-419f-be02-293922faff5b" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14981" ], "x-ms-correlation-request-id": [ - "4dc5e3ba-19c0-46b3-bd6d-3dcbbd3bcdbc" + "0b902f2c-d266-4edc-b631-5f4e8a5237d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072919Z:4dc5e3ba-19c0-46b3-bd6d-3dcbbd3bcdbc" + "WESTUS2:20171205T234912Z:0b902f2c-d266-4edc-b631-5f4e8a5237d0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1305,7 +1362,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:29:49 GMT" + "Tue, 05 Dec 2017 23:49:42 GMT" ], "Pragma": [ "no-cache" @@ -1320,38 +1377,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1135c3d9-4805-452d-aa3d-44df3f606375" + "04f65d77-9211-485c-b8e4-093bd492d808" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14980" ], "x-ms-correlation-request-id": [ - "0d48cf6e-af15-4e50-92c3-3d4e971c8bd6" + "12533944-3ac5-47df-93be-5dc4900f1242" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T072949Z:0d48cf6e-af15-4e50-92c3-3d4e971c8bd6" + "WESTUS2:20171205T234943Z:12533944-3ac5-47df-93be-5dc4900f1242" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1363,7 +1423,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:30:19 GMT" + "Tue, 05 Dec 2017 23:50:12 GMT" ], "Pragma": [ "no-cache" @@ -1378,38 +1438,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6f7cc870-5b30-4d6e-a812-f1b6bab052d5" + "d581ebec-fa52-4d47-b20b-3dfa9e5bef91" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14979" ], "x-ms-correlation-request-id": [ - "9e38f1af-5c92-4524-b029-678bf7534aae" + "26daf223-8578-4121-84af-85922a847a9f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073019Z:9e38f1af-5c92-4524-b029-678bf7534aae" + "WESTUS2:20171205T235013Z:26daf223-8578-4121-84af-85922a847a9f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1421,7 +1484,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:30:49 GMT" + "Tue, 05 Dec 2017 23:50:42 GMT" ], "Pragma": [ "no-cache" @@ -1436,38 +1499,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "780f4d04-8cbb-4097-b900-02389826450d" + "555b019b-b519-4ff3-bef3-eb51f617e5ae" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14978" ], "x-ms-correlation-request-id": [ - "5eab51d7-8241-4ee1-a40a-622ff1f13e96" + "67e95922-27d8-4084-9438-53866c8eef20" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073050Z:5eab51d7-8241-4ee1-a40a-622ff1f13e96" + "WESTUS2:20171205T235043Z:67e95922-27d8-4084-9438-53866c8eef20" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1479,7 +1545,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:31:20 GMT" + "Tue, 05 Dec 2017 23:51:12 GMT" ], "Pragma": [ "no-cache" @@ -1494,38 +1560,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "56bf68bc-4c72-43d7-aa5a-9ff05ffaf022" + "afaebcaa-a2ff-488f-96e4-e538c735bfed" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14977" ], "x-ms-correlation-request-id": [ - "8674c280-e5de-4ddb-8222-e52de90ca0f6" + "47b7fbdb-2f19-4cc5-b24a-d47723e447ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073120Z:8674c280-e5de-4ddb-8222-e52de90ca0f6" + "WESTUS2:20171205T235113Z:47b7fbdb-2f19-4cc5-b24a-d47723e447ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1537,7 +1606,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:31:49 GMT" + "Tue, 05 Dec 2017 23:51:42 GMT" ], "Pragma": [ "no-cache" @@ -1552,38 +1621,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "086c7717-75f4-4f93-a873-96d0c55e15a8" + "3f7ee77c-7431-421a-90c3-eba8721fe464" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14976" ], "x-ms-correlation-request-id": [ - "d0d91263-f98f-4231-9456-a6dcd8d3293f" + "6c137007-6c88-4dab-825f-b71b438ddca2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073150Z:d0d91263-f98f-4231-9456-a6dcd8d3293f" + "WESTUS2:20171205T235143Z:6c137007-6c88-4dab-825f-b71b438ddca2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1595,7 +1667,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:32:20 GMT" + "Tue, 05 Dec 2017 23:52:13 GMT" ], "Pragma": [ "no-cache" @@ -1610,38 +1682,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b235f0eb-6351-42b8-a15e-fc36b3d90c25" + "05dff8e7-75cc-4c67-96f8-e735d4d37633" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14975" ], "x-ms-correlation-request-id": [ - "2f541019-53a4-4f4a-baf1-f7750add34da" + "823473a7-9e98-4bcc-a70e-a26444cfed48" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073220Z:2f541019-53a4-4f4a-baf1-f7750add34da" + "WESTUS2:20171205T235213Z:823473a7-9e98-4bcc-a70e-a26444cfed48" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1653,7 +1728,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:32:50 GMT" + "Tue, 05 Dec 2017 23:52:42 GMT" ], "Pragma": [ "no-cache" @@ -1668,38 +1743,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5648546a-62ea-46d1-ad02-5cff0cd62874" + "a335a725-8791-468f-a64e-673803f535ac" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14974" ], "x-ms-correlation-request-id": [ - "fb18a813-ea49-4435-9ce4-97439541578e" + "31503192-9858-46ed-a06e-e3b85fca1720" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073250Z:fb18a813-ea49-4435-9ce4-97439541578e" + "WESTUS2:20171205T235243Z:31503192-9858-46ed-a06e-e3b85fca1720" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1711,7 +1789,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:33:20 GMT" + "Tue, 05 Dec 2017 23:53:13 GMT" ], "Pragma": [ "no-cache" @@ -1726,38 +1804,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "46a2cd89-ebfb-4610-882e-92af3453feba" + "ea7025b8-2451-401a-824c-11ab47721ce0" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14973" ], "x-ms-correlation-request-id": [ - "edcc7ef4-28a2-443b-8d28-8d315c9bcb38" + "d0c7f854-1e6e-4805-bd0b-b92b75ef24a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073320Z:edcc7ef4-28a2-443b-8d28-8d315c9bcb38" + "WESTUS2:20171205T235313Z:d0c7f854-1e6e-4805-bd0b-b92b75ef24a2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1769,7 +1850,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:33:50 GMT" + "Tue, 05 Dec 2017 23:53:43 GMT" ], "Pragma": [ "no-cache" @@ -1784,38 +1865,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9f602b95-3c83-44e3-983f-c06b2de2c9e4" + "abca302a-e99f-4c18-85fb-97cdea16ac64" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14972" ], "x-ms-correlation-request-id": [ - "dcaaed15-c7ad-4779-ae82-552f82a7ad05" + "ff8c66e8-05f2-4f79-a230-4449822cbe8f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073351Z:dcaaed15-c7ad-4779-ae82-552f82a7ad05" + "WESTUS2:20171205T235343Z:ff8c66e8-05f2-4f79-a230-4449822cbe8f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1827,7 +1911,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:34:20 GMT" + "Tue, 05 Dec 2017 23:54:13 GMT" ], "Pragma": [ "no-cache" @@ -1842,38 +1926,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "51bc74fa-cd94-4b3c-bf43-46b02c1798f7" + "8c08abba-526e-4830-8f2f-a73bce765e90" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14971" ], "x-ms-correlation-request-id": [ - "79890848-6c2d-47e1-a01e-7990a8a13447" + "73c3069b-d94c-4553-abc4-f6921de1e833" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073421Z:79890848-6c2d-47e1-a01e-7990a8a13447" + "WESTUS2:20171205T235413Z:73c3069b-d94c-4553-abc4-f6921de1e833" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1885,7 +1972,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:34:51 GMT" + "Tue, 05 Dec 2017 23:54:43 GMT" ], "Pragma": [ "no-cache" @@ -1900,38 +1987,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ee683b73-0189-444a-bf2c-fc57d7c496d7" + "6d7f763c-050d-4e4a-a132-466fdbb6b0cd" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14970" ], "x-ms-correlation-request-id": [ - "133551b5-c6c4-49f7-a42d-6fb9a7d241e5" + "2ffad089-5077-40c2-af2c-bdee10916432" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073451Z:133551b5-c6c4-49f7-a42d-6fb9a7d241e5" + "WESTUS2:20171205T235444Z:2ffad089-5077-40c2-af2c-bdee10916432" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1943,7 +2033,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:35:21 GMT" + "Tue, 05 Dec 2017 23:55:13 GMT" ], "Pragma": [ "no-cache" @@ -1958,38 +2048,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "79125c8a-e1dc-4e4a-bc75-613650d8d9a9" + "9e11658e-7f9f-445f-a3f1-c3bd1acdfea2" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14969" ], "x-ms-correlation-request-id": [ - "b8bf50a6-99b6-46fb-998d-204ef1e48412" + "0ffb1e0b-4562-460f-8d4d-bac5656aa352" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073521Z:b8bf50a6-99b6-46fb-998d-204ef1e48412" + "WESTUS2:20171205T235514Z:0ffb1e0b-4562-460f-8d4d-bac5656aa352" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2001,7 +2094,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:35:51 GMT" + "Tue, 05 Dec 2017 23:55:44 GMT" ], "Pragma": [ "no-cache" @@ -2016,38 +2109,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "df604578-cf36-4791-a5bd-b8f66535b386" + "34094445-4ab1-40ef-84c0-d5162ffc3715" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14968" ], "x-ms-correlation-request-id": [ - "e592a39b-e8ac-4fec-85f7-60ad25245c3d" + "c7edb0cb-c186-4bdc-987b-560ca7d81dc9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073551Z:e592a39b-e8ac-4fec-85f7-60ad25245c3d" + "WESTUS2:20171205T235544Z:c7edb0cb-c186-4bdc-987b-560ca7d81dc9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2059,7 +2155,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:36:20 GMT" + "Tue, 05 Dec 2017 23:56:14 GMT" ], "Pragma": [ "no-cache" @@ -2074,38 +2170,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5c02844d-4a32-4181-9a82-39c2951924b6" + "ad4aba7c-e312-4b38-a2f2-b9ad553fbafa" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14967" ], "x-ms-correlation-request-id": [ - "d9b09f05-2fcc-44b7-8558-e21dd737a211" + "59d418ed-9f47-44a0-8633-9280beb72772" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073621Z:d9b09f05-2fcc-44b7-8558-e21dd737a211" + "WESTUS2:20171205T235614Z:59d418ed-9f47-44a0-8633-9280beb72772" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2117,7 +2216,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:36:51 GMT" + "Tue, 05 Dec 2017 23:56:44 GMT" ], "Pragma": [ "no-cache" @@ -2132,38 +2231,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cb4cfaf1-2425-4869-be22-4e7fb7891339" + "b393a215-2726-4c56-9d2e-1353c67cdca6" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14966" ], "x-ms-correlation-request-id": [ - "9a934702-c3be-4b49-835c-ce270b4ec464" + "6b8bed66-195c-418b-aa72-2a25e90b86f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073651Z:9a934702-c3be-4b49-835c-ce270b4ec464" + "WESTUS2:20171205T235644Z:6b8bed66-195c-418b-aa72-2a25e90b86f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9yZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2175,7 +2277,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:21 GMT" + "Tue, 05 Dec 2017 23:57:14 GMT" ], "Pragma": [ "no-cache" @@ -2190,44 +2292,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b1f753a7-6f76-4811-b27b-d28a3d728525" + "a75ecf22-9c69-413e-b243-d9fb4484c10e" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14965" ], "x-ms-correlation-request-id": [ - "36ec3cf4-0d1a-4b0c-91e3-adee2065d1b9" + "dc5c7093-ddc9-47dc-bb1f-86b746826ea7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073722Z:36ec3cf4-0d1a-4b0c-91e3-adee2065d1b9" + "WESTUS2:20171205T235715Z:dc5c7093-ddc9-47dc-bb1f-86b746826ea7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b229ca73-3e26-478d-a449-36666add4656" + "656e0a6e-71fd-485c-b39f-d080d5c2e600" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2239,7 +2344,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:21 GMT" + "Tue, 05 Dec 2017 23:57:16 GMT" ], "Pragma": [ "no-cache" @@ -2254,44 +2359,47 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0158fb40-7553-4baa-a077-de895bc94a7e" + "21086657-17f2-45a6-a51d-3258dbfba0ed" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14964" ], "x-ms-correlation-request-id": [ - "4bd99e13-2e6f-4e4c-a019-dd35a12aad90" + "ceba96ae-3f5d-45c0-9e17-bd6424f7a420" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073722Z:4bd99e13-2e6f-4e4c-a019-dd35a12aad90" + "WESTUS2:20171205T235716Z:ceba96ae-3f5d-45c0-9e17-bd6424f7a420" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1?api-version=2016-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2h5ZHJhMTMwMTIvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9oeWRyYWNhY2hlMT9hcGktdmVyc2lvbj0yMDE2LTA0LTAx", + "RequestUri": "/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTkyY2M5ZGUtYTNjZC00ZDcwLTliYzEtYzFhMjhhMzYyNWI1L3Jlc291cmNlR3JvdXBzL1JlZGlzR2V0TGlzdDU5NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5DYWNoZS9SZWRpcy9SZWRpc0dldExpc3QzOTQ2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d16f11c7-c484-4284-b005-3a2744f8cbc2" + "e34ed267-813e-497e-98d4-e9cc27aaee96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Redis.RedisManagementClient/3.1.1-preview" + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Redis.RedisManagementClient/4.3.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hydra13012/providers/Microsoft.Cache/Redis/hydracache1\",\r\n \"location\": \"North Central US\",\r\n \"name\": \"hydracache1\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.0\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"hydracache1.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/592cc9de-a3cd-4d70-9bc1-c1a28a3625b5/resourceGroups/RedisGetList5965/providers/Microsoft.Cache/Redis/RedisGetList3946\",\r\n \"location\": \"West Central US\",\r\n \"name\": \"RedisGetList3946\",\r\n \"type\": \"Microsoft.Cache/Redis\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"redisVersion\": \"3.2.7\",\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"family\": \"C\",\r\n \"capacity\": 0\r\n },\r\n \"enableNonSslPort\": false,\r\n \"tenantSettings\": {\r\n \"InternalDependencyList\": \"[\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcus4765031795.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.blob.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageQueue\\\",\\r\\n \\\"Value\\\": \\\"https://wcusscaleunit5435222359.queue.core.windows.net/\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa834343247016.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb832359349008.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa923230976597.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb929002419042.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa056552918724.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb058229963395.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa951612516970.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb952816101216.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"StorageBlob\\\",\\r\\n \\\"Value\\\": \\\"https://wcusgenevasa394407896818.blob.core.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"ServiceBus\\\",\\r\\n \\\"Value\\\": \\\"wcusgenevasb398857595686.servicebus.windows.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://prod.warmpath.msftcloudes.com\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdCUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEUSc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdWEURc1.cloudapp.net\\\"\\r\\n },\\r\\n {\\r\\n \\\"Type\\\": \\\"MetricsConfigurationService\\\",\\r\\n \\\"Value\\\": \\\"https://WarmPathFEProdEASc1.cloudapp.net\\\"\\r\\n }\\r\\n]\"\r\n },\r\n \"redisConfiguration\": {\r\n \"maxclients\": \"256\",\r\n \"maxmemory-reserved\": \"2\",\r\n \"maxfragmentationmemory-reserved\": \"12\",\r\n \"maxmemory-delta\": \"2\"\r\n },\r\n \"accessKeys\": null,\r\n \"hostName\": \"RedisGetList3946.redis.cache.windows.net\",\r\n \"port\": 6379,\r\n \"sslPort\": 6380,\r\n \"linkedServers\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2303,7 +2411,7 @@ "no-cache" ], "Date": [ - "Tue, 18 Oct 2016 07:37:51 GMT" + "Tue, 05 Dec 2017 23:57:46 GMT" ], "Pragma": [ "no-cache" @@ -2318,22 +2426,25 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "83aca32b-2c7c-4e78-9bf5-b5c21dc8870b" + "2ab93cc5-3e75-4af4-936d-c42c80e4f848" ], "x-rp-server-mvid": [ - "a10738d6-1cb8-4b83-9fbf-9de75c3d37b0" + "aae8b77a-d9ee-4150-a289-95fc7f9ee59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-content-type-options": [ + "nosniff" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14963" ], "x-ms-correlation-request-id": [ - "7ea93e05-fd4a-4e25-9209-ec28d6189366" + "cdc10315-e4e6-4245-9cb1-bbde13f31037" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161018T073752Z:7ea93e05-fd4a-4e25-9209-ec28d6189366" + "WESTUS2:20171205T235747Z:cdc10315-e4e6-4245-9cb1-bbde13f31037" ] }, "StatusCode": 200 @@ -2341,10 +2452,11 @@ ], "Names": { ".ctor": [ - "hydra13012" + "RedisGetList5965", + "RedisGetList3946" ] }, "Variables": { - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "SubscriptionId": "592cc9de-a3cd-4d70-9bc1-c1a28a3625b5" } } \ No newline at end of file From 88ea3c4b7864338a34d697c527f9523d72e6a5a3 Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Mon, 11 Dec 2017 11:19:51 -0800 Subject: [PATCH 2/5] Regenerated code and adding some new files --- .../SdkInfo_RedisManagementClient.cs | 22 +++++++++++++++++++ src/SDKs/_metadata/redis_resource-manager.txt | 11 ++++++++++ 2 files changed, 33 insertions(+) create mode 100644 src/SDKs/RedisCache/Management.Redis/Generated/SdkInfo_RedisManagementClient.cs create mode 100644 src/SDKs/_metadata/redis_resource-manager.txt diff --git a/src/SDKs/RedisCache/Management.Redis/Generated/SdkInfo_RedisManagementClient.cs b/src/SDKs/RedisCache/Management.Redis/Generated/SdkInfo_RedisManagementClient.cs new file mode 100644 index 000000000000..1e746ebeafcb --- /dev/null +++ b/src/SDKs/RedisCache/Management.Redis/Generated/SdkInfo_RedisManagementClient.cs @@ -0,0 +1,22 @@ + +using System; +using System.Collections.Generic; +using System.Linq; + +internal static partial class SdkInfo +{ + public static IEnumerable> ApiInfo_RedisManagementClient + { + get + { + return new Tuple[] + { + new Tuple("Cache", "FirewallRules", "2017-10-01"), + new Tuple("Cache", "LinkedServer", "2017-10-01"), + new Tuple("Cache", "Operations", "2017-10-01"), + new Tuple("Cache", "PatchSchedules", "2017-10-01"), + new Tuple("Cache", "Redis", "2017-10-01"), + }.AsEnumerable(); + } + } +} diff --git a/src/SDKs/_metadata/redis_resource-manager.txt b/src/SDKs/_metadata/redis_resource-manager.txt new file mode 100644 index 000000000000..79c16b2b67ff --- /dev/null +++ b/src/SDKs/_metadata/redis_resource-manager.txt @@ -0,0 +1,11 @@ +2017-12-11 19:17:14 UTC + +1) azure-rest-api-specs repository information +GitHub user: Azure +Branch: current +Commit: 78918d7d04e740f81de497e12726c173441a2767 + +2) AutoRest information +Requested version: latest +Bootstrapper version: C:\Users\sichatro\AppData\Roaming\npm `-- autorest@2.0.4215 +Latest installed version: From 0283743393b08f4c994a37e88976b55b7847cadb Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Mon, 11 Dec 2017 11:48:31 -0800 Subject: [PATCH 3/5] Changing package version and making it non preview --- .../Management.Redis/Microsoft.Azure.Management.Redis.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj b/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj index 124faba1c23e..03824ec5184f 100644 --- a/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj +++ b/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj @@ -6,7 +6,7 @@ Microsoft.Azure.Management.Redis Provides redis cache management capabilities for Microsoft Azure. - 4.3.0-preview + 4.4.0 Microsoft.Azure.Management.Redis Microsoft Azure Redis Cache management;Redis Management; From 91214bf2bc0793646a8ba924bf7f486811656764 Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Mon, 11 Dec 2017 15:59:56 -0800 Subject: [PATCH 4/5] Undo comments in AssemblyInfo --- src/SDKs/RedisCache/AzSdk.RP.props | 7 +++++++ .../Management.Redis/Properties/AssemblyInfo.cs | 14 +++++++------- .../RedisCache.Tests/Properties/AssemblyInfo.cs | 14 +++++++------- 3 files changed, 21 insertions(+), 14 deletions(-) create mode 100644 src/SDKs/RedisCache/AzSdk.RP.props diff --git a/src/SDKs/RedisCache/AzSdk.RP.props b/src/SDKs/RedisCache/AzSdk.RP.props new file mode 100644 index 000000000000..26ccdc9fb98b --- /dev/null +++ b/src/SDKs/RedisCache/AzSdk.RP.props @@ -0,0 +1,7 @@ + + + + Cache_2017-10-01; + $(PackageTags);$(CommonTags);$(AzureApiTag); + + \ No newline at end of file diff --git a/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs b/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs index 500b8e64edc8..9fce5e191bca 100644 --- a/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs +++ b/src/SDKs/RedisCache/Management.Redis/Properties/AssemblyInfo.cs @@ -5,15 +5,15 @@ using System.Resources; using System.Runtime.InteropServices; -//[assembly: AssemblyTitle("Microsoft Azure Redis Cache Management Library")] -//[assembly: AssemblyDescription("Provides Microsoft Azure redis cache management operations.")] +[assembly: AssemblyTitle("Microsoft Azure Redis Cache Management Library")] +[assembly: AssemblyDescription("Provides Microsoft Azure redis cache management operations.")] -//[assembly: AssemblyVersion("4.0.0.0")] -//[assembly: AssemblyFileVersion("4.3.0.0")] +[assembly: AssemblyVersion("4.0.0.0")] +[assembly: AssemblyFileVersion("4.4.0.0")] -//[assembly: AssemblyConfiguration("")] -//[assembly: AssemblyCompany("Microsoft")] -//[assembly: AssemblyProduct("Microsoft Azure .NET SDK")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Microsoft Azure .NET SDK")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs b/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs index d39ffcd018e1..5a4a18f4aa31 100644 --- a/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs +++ b/src/SDKs/RedisCache/RedisCache.Tests/Properties/AssemblyInfo.cs @@ -8,11 +8,11 @@ // 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("AzureRedisCache.Tests")] -//[assembly: AssemblyDescription("")] -//[assembly: AssemblyConfiguration("")] -//[assembly: AssemblyProduct("AzureRedisCache.Tests")] -//[assembly: AssemblyCompany("Microsoft Corporation")] +[assembly: AssemblyTitle("AzureRedisCache.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyProduct("AzureRedisCache.Tests")] +[assembly: AssemblyCompany("Microsoft Corporation")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -35,5 +35,5 @@ // 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")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] From b11c67d1a1c9f3996cdfa48c99116c722c7a6fd2 Mon Sep 17 00:00:00 2001 From: Siddharth Chatrola Date: Mon, 11 Dec 2017 17:36:30 -0800 Subject: [PATCH 5/5] Added release notes --- .../Microsoft.Azure.Management.Redis.csproj | 42 +++++++++++-------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj b/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj index 03824ec5184f..d17d7424862e 100644 --- a/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj +++ b/src/SDKs/RedisCache/Management.Redis/Microsoft.Azure.Management.Redis.csproj @@ -1,21 +1,29 @@  - - - + + + - - Microsoft.Azure.Management.Redis - Provides redis cache management capabilities for Microsoft Azure. - 4.4.0 - Microsoft.Azure.Management.Redis - Microsoft Azure Redis Cache management;Redis Management; - - - - net452;netstandard1.4 - + + Microsoft.Azure.Management.Redis + Provides redis cache management capabilities for Microsoft Azure. + 4.4.0 + Microsoft.Azure.Management.Redis + Microsoft Azure Redis Cache management;Redis Management; + + + + + + + net452;netstandard1.4 + - - - + + + \ No newline at end of file