From 44ca20b660c72e216decb8b2aee8025f85a80518 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Tue, 12 Dec 2017 21:28:08 -0800 Subject: [PATCH 01/10] [Azure Search] Adding back missing tools and fixing build warnings --- src/SDKs/Search/AzSdk.RP.props | 7 ++++++ .../Tests/AccessConditionTests.cs | 16 ++++++------- .../Serialization/DocumentConverterTests.cs | 14 +++++------ src/SDKs/Search/Get-TestMode.ps1 | 1 + .../ModelComparer/ModelComparerTests.cs | 4 ++++ .../Utilities/SearchServiceFixture.cs | 2 +- src/SDKs/Search/Set-TestMode.ps1 | 23 +++++++++++++++++++ 7 files changed, 51 insertions(+), 16 deletions(-) create mode 100644 src/SDKs/Search/AzSdk.RP.props create mode 100644 src/SDKs/Search/Get-TestMode.ps1 create mode 100644 src/SDKs/Search/Set-TestMode.ps1 diff --git a/src/SDKs/Search/AzSdk.RP.props b/src/SDKs/Search/AzSdk.RP.props new file mode 100644 index 0000000000000..39645fa6dc051 --- /dev/null +++ b/src/SDKs/Search/AzSdk.RP.props @@ -0,0 +1,7 @@ + + + + + $(PackageTags);$(CommonTags);$(AzureApiTag); + + \ No newline at end of file diff --git a/src/SDKs/Search/DataPlane/Search.Tests/Tests/AccessConditionTests.cs b/src/SDKs/Search/DataPlane/Search.Tests/Tests/AccessConditionTests.cs index d1d876e3a4931..948ba48d3a198 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/Tests/AccessConditionTests.cs +++ b/src/SDKs/Search/DataPlane/Search.Tests/Tests/AccessConditionTests.cs @@ -117,7 +117,7 @@ public void GenerateIfMatchConditionReturnsIfNoneMatchAccessCondition() Assert.Null(result.IfMatch); } - public static void CreateOrUpdateIfNotExistsFailsOnExistingResource( + internal static void CreateOrUpdateIfNotExistsFailsOnExistingResource( Func createOrUpdateFunc, Func newResourceDefinition, Func mutateResourceDefinition) @@ -132,7 +132,7 @@ public static void CreateOrUpdateIfNotExistsFailsOnExistingResource( e => e.IsAccessConditionFailed()); } - public static void CreateOrUpdateIfNotExistsSucceedsOnNoResource( + internal static void CreateOrUpdateIfNotExistsSucceedsOnNoResource( Func createOrUpdateFunc, Func newResourceDefinition) where T : IResourceWithETag @@ -145,7 +145,7 @@ public static void CreateOrUpdateIfNotExistsSucceedsOnNoResource( Assert.NotEmpty(updatedResource.ETag); } - public static void UpdateIfExistsSucceedsOnExistingResource( + internal static void UpdateIfExistsSucceedsOnExistingResource( Func createOrUpdateFunc, Func newResourceDefinition, Func mutateResourceDefinition) @@ -161,7 +161,7 @@ public static void UpdateIfExistsSucceedsOnExistingResource( Assert.NotEqual(createdResource.ETag, updatedResource.ETag); } - public static void UpdateIfExistsFailsOnNoResource( + internal static void UpdateIfExistsFailsOnNoResource( Func createOrUpdateFunc, Func newResourceDefinition) where T : IResourceWithETag @@ -177,7 +177,7 @@ public static void UpdateIfExistsFailsOnNoResource( Assert.Null(resource.ETag); } - public static void UpdateIfNotChangedSucceedsWhenResourceUnchanged( + internal static void UpdateIfNotChangedSucceedsWhenResourceUnchanged( Func createOrUpdateFunc, Func newResourceDefinition, Func mutateResourceDefinition) @@ -194,7 +194,7 @@ public static void UpdateIfNotChangedSucceedsWhenResourceUnchanged( Assert.NotEqual(createdResource.ETag, updatedResource.ETag); } - public static void UpdateIfNotChangedFailsWhenResourceChanged( + internal static void UpdateIfNotChangedFailsWhenResourceChanged( Func createOrUpdateFunc, Func newResourceDefinition, Func mutateResourceDefinition) @@ -214,7 +214,7 @@ public static void UpdateIfNotChangedFailsWhenResourceChanged( Assert.NotEqual(createdResource.ETag, updatedResource.ETag); } - public static void DeleteIfNotChangedWorksOnlyOnCurrentResource( + internal static void DeleteIfNotChangedWorksOnlyOnCurrentResource( Action deleteAction, Func createResource, Func updateResource, @@ -231,7 +231,7 @@ public static void DeleteIfNotChangedWorksOnlyOnCurrentResource( delete(resourceName, AccessCondition.IfNotChanged(currentResource)); } - public static void DeleteIfExistsWorksOnlyWhenResourceExists( + internal static void DeleteIfExistsWorksOnlyWhenResourceExists( Action deleteAction, Func createResource, string resourceName) diff --git a/src/SDKs/Search/DataPlane/Search.Tests/Tests/Serialization/DocumentConverterTests.cs b/src/SDKs/Search/DataPlane/Search.Tests/Tests/Serialization/DocumentConverterTests.cs index 14f4258d38c24..e52b25b44e3f8 100644 --- a/src/SDKs/Search/DataPlane/Search.Tests/Tests/Serialization/DocumentConverterTests.cs +++ b/src/SDKs/Search/DataPlane/Search.Tests/Tests/Serialization/DocumentConverterTests.cs @@ -81,9 +81,9 @@ public void CanReadEmptyArrays() { Document doc = JsonConvert.DeserializeObject(@"{ ""field"": [] }", _settings); - Assert.Equal(1, doc.Count); + Assert.Single(doc); string[] fieldValues = Assert.IsType(doc["field"]); - Assert.Equal(0, fieldValues.Length); + Assert.Empty(fieldValues); } [Fact] @@ -91,7 +91,7 @@ public void CanReadArraysOfStrings() { Document doc = JsonConvert.DeserializeObject(@"{ ""field"": [""hello"", ""goodbye""] }", _settings); - Assert.Equal(1, doc.Count); + Assert.Single(doc); string[] fieldValues = Assert.IsType(doc["field"]); Assert.Equal(2, fieldValues.Length); Assert.Equal("hello", fieldValues[0]); @@ -104,7 +104,7 @@ public void CanReadGeoPoint() const string Json = @"{ ""field"": { ""type"": ""Point"", ""coordinates"": [-122.131577, 47.678581] } }"; Document doc = JsonConvert.DeserializeObject(Json, _settings); - Assert.Equal(1, doc.Count); + Assert.Single(doc); GeographyPoint fieldValue = Assert.IsAssignableFrom(doc["field"]); Assert.Equal(-122.131577, fieldValue.Longitude); Assert.Equal(47.678581, fieldValue.Latitude); @@ -137,7 +137,7 @@ public void DateTimeStringsAreReadAsDateTime() Document doc = JsonConvert.DeserializeObject(json, _settings); - Assert.Equal(1, doc.Count); + Assert.Single(doc); Assert.Equal(TestDate, doc["field"]); } @@ -148,7 +148,7 @@ public void CanReadArraysOfMixedTypes() // Azure Search won't return payloads like this; This test is only for pinning purposes. Document doc = JsonConvert.DeserializeObject(@"{ ""field"": [""hello"", 123, 3.14] }", _settings); - Assert.Equal(1, doc.Count); + Assert.Single(doc); object[] fieldValues = Assert.IsType(doc["field"]); Assert.Equal(3, fieldValues.Length); Assert.Equal("hello", fieldValues[0]); @@ -164,7 +164,7 @@ public void DateTimeStringsInArraysAreReadAsDateTime() Document doc = JsonConvert.DeserializeObject(json, _settings); - Assert.Equal(1, doc.Count); + Assert.Single(doc); object[] fieldValues = Assert.IsType(doc["field"]); Assert.Equal(3, fieldValues.Length); Assert.Equal("hello", fieldValues[0]); diff --git a/src/SDKs/Search/Get-TestMode.ps1 b/src/SDKs/Search/Get-TestMode.ps1 new file mode 100644 index 0000000000000..6a92bb224fcab --- /dev/null +++ b/src/SDKs/Search/Get-TestMode.ps1 @@ -0,0 +1 @@ +Write-Output "Current test mode is: $Env:AZURE_TEST_MODE" \ No newline at end of file diff --git a/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparerTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparerTests.cs index b3c8a1a7b303d..0da221002c985 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparerTests.cs +++ b/src/SDKs/Search/Management/Search.Management.Tests/ModelComparer/ModelComparerTests.cs @@ -80,13 +80,17 @@ public void CanCompareNullables() Assert.NotEqual(maybePi, maybeE, new ModelComparer()); Assert.NotEqual(maybeTrue, maybeFalse, new ModelComparer()); +#pragma warning disable xUnit2003 // Do not use equality check to test for null value Assert.NotEqual(null, maybeSeven, new ModelComparer()); Assert.NotEqual(null, maybePi, new ModelComparer()); Assert.NotEqual(null, maybeTrue, new ModelComparer()); +#pragma warning restore xUnit2003 // Do not use equality check to test for null value +#pragma warning disable xUnit2000 // Literal or constant should be the first argument to Assert.NotEqual Assert.NotEqual(maybeSeven, null, new ModelComparer()); Assert.NotEqual(maybePi, null, new ModelComparer()); Assert.NotEqual(maybeTrue, null, new ModelComparer()); +#pragma warning restore xUnit2000 // Literal or constant should be the first argument to Assert.NotEqual } [Fact] diff --git a/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchServiceFixture.cs b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchServiceFixture.cs index 15ea1275671e3..2ddfd6c4b8800 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchServiceFixture.cs +++ b/src/SDKs/Search/Management/Search.Management.Tests/Utilities/SearchServiceFixture.cs @@ -39,7 +39,7 @@ public override void Initialize(MockContext context) var queryKeys = client.QueryKeys.ListBySearchService(ResourceGroupName, SearchServiceName); Assert.NotNull(queryKeys); - Assert.Equal(1, queryKeys.Count()); + Assert.Single(queryKeys); QueryApiKey = queryKeys.First().Key; } diff --git a/src/SDKs/Search/Set-TestMode.ps1 b/src/SDKs/Search/Set-TestMode.ps1 new file mode 100644 index 0000000000000..2d65574b7f29c --- /dev/null +++ b/src/SDKs/Search/Set-TestMode.ps1 @@ -0,0 +1,23 @@ +[CmdletBinding(DefaultParameterSetName="None")] +param( + [parameter(ParameterSetName="None", Mandatory=$true)][switch]$None, + [parameter(ParameterSetName="Playback", Mandatory=$true)][switch]$Playback, + [parameter(ParameterSetName="Record", Mandatory=$true)][switch]$Record +) + +if ($Record) +{ + $mode = "Record" +} +elseif ($Playback) +{ + $mode = "Playback" +} +else +{ + $mode = "None" +} + +$Env:AZURE_TEST_MODE = $mode + +Write-Output "New test mode is: $Env:AZURE_TEST_MODE" \ No newline at end of file From a026f275b0146e01afa77bd006b6ec1f1f53c0e7 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Tue, 12 Dec 2017 21:51:31 -0800 Subject: [PATCH 02/10] [Azure Search] Regenerate mgmt SDK with latest version of AutoRest --- src/SDKs/Search/AzSdk.RP.props | 2 +- .../Generated/AdminKeysOperations.cs | 215 +++--- .../AdminKeysOperationsExtensions.cs | 34 +- .../Generated/IAdminKeysOperations.cs | 25 +- .../Generated/IQueryKeysOperations.cs | 37 +- .../Generated/ISearchManagementClient.cs | 15 +- .../Generated/IServicesOperations.cs | 105 ++- .../Generated/Models/AdminKeyKind.cs | 45 +- .../Generated/Models/AdminKeyResult.cs | 20 +- .../Models/CheckNameAvailabilityInput.cs | 33 +- .../Models/CheckNameAvailabilityOutput.cs | 30 +- .../Generated/Models/HostingMode.cs | 45 +- .../Generated/Models/Page.cs | 27 +- .../Generated/Models/ProvisioningState.cs | 51 +- .../Generated/Models/QueryKey.cs | 20 +- .../Generated/Models/Resource.cs | 48 +- .../Models/SearchManagementRequestOptions.cs | 18 +- .../Generated/Models/SearchService.cs | 174 +++-- .../Generated/Models/SearchServiceStatus.cs | 69 +- .../Management.Search/Generated/Models/Sku.cs | 36 +- .../Generated/Models/SkuName.cs | 63 +- .../Generated/Models/UnavailableNameReason.cs | 4 +- .../Generated/QueryKeysOperations.cs | 310 ++++---- .../QueryKeysOperationsExtensions.cs | 60 +- .../SdkInfo_SearchManagementClient.cs | 20 + .../Generated/SearchManagementClient.cs | 112 +-- .../Generated/ServicesOperations.cs | 700 ++++++++++-------- .../Generated/ServicesOperationsExtensions.cs | 140 +++- .../_metadata/search_resource-manager.txt | 11 + 29 files changed, 1554 insertions(+), 915 deletions(-) create mode 100644 src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs create mode 100644 src/SDKs/_metadata/search_resource-manager.txt diff --git a/src/SDKs/Search/AzSdk.RP.props b/src/SDKs/Search/AzSdk.RP.props index 39645fa6dc051..7d03ffa136c63 100644 --- a/src/SDKs/Search/AzSdk.RP.props +++ b/src/SDKs/Search/AzSdk.RP.props @@ -1,7 +1,7 @@ - + Search_2015-08-19; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperations.cs index c9beeafbdf12b..e6b88107c7a9f 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperations.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { - 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; /// /// AdminKeysOperations operations. /// - internal partial class AdminKeysOperations : Microsoft.Rest.IServiceOperations, IAdminKeysOperations + internal partial class AdminKeysOperations : IServiceOperations, IAdminKeysOperations { /// /// Initializes a new instance of the AdminKeysOperations class. @@ -29,11 +38,11 @@ internal partial class AdminKeysOperations : Microsoft.Rest.IServiceOperations internal AdminKeysOperations(SearchManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -51,8 +60,8 @@ internal AdminKeysOperations(SearchManagementClient client) /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -63,35 +72,38 @@ internal AdminKeysOperations(SearchManagementClient 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 searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } - 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -99,50 +111,50 @@ internal AdminKeysOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("clientRequestId", clientRequestId); 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.Search/searchServices/{searchServiceName}/listAdminKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); - _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 (clientRequestId != null) { @@ -150,8 +162,10 @@ internal AdminKeysOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -167,51 +181,51 @@ internal AdminKeysOperations(SearchManagementClient 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) @@ -221,7 +235,7 @@ internal AdminKeysOperations(SearchManagementClient 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")) @@ -234,21 +248,21 @@ internal AdminKeysOperations(SearchManagementClient 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; } @@ -263,8 +277,8 @@ internal AdminKeysOperations(SearchManagementClient client) /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Specifies which key to regenerate. Valid values include 'primary' and @@ -279,35 +293,38 @@ internal AdminKeysOperations(SearchManagementClient 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> RegenerateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> RegenerateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } - 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -315,52 +332,52 @@ internal AdminKeysOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("keyKind", keyKind); tracingParameters.Add("clientRequestId", clientRequestId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Regenerate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Regenerate", 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.Search/searchServices/{searchServiceName}/regenerateAdminKey/{keyKind}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); - _url = _url.Replace("{keyKind}", System.Uri.EscapeDataString(Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(keyKind, this.Client.SerializationSettings).Trim('"'))); - _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("{keyKind}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(keyKind, Client.SerializationSettings).Trim('"'))); + _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 (clientRequestId != null) { @@ -368,8 +385,10 @@ internal AdminKeysOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -385,51 +404,51 @@ internal AdminKeysOperations(SearchManagementClient 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) @@ -439,7 +458,7 @@ internal AdminKeysOperations(SearchManagementClient 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")) @@ -452,21 +471,21 @@ internal AdminKeysOperations(SearchManagementClient 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/Search/Management/Management.Search/Generated/AdminKeysOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperationsExtensions.cs index ce967c8232bad..b7f1e9a92bc11 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperationsExtensions.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/AdminKeysOperationsExtensions.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { + 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 AdminKeysOperations. @@ -30,15 +34,15 @@ public static partial class AdminKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation /// public static AdminKeyResult Get(this IAdminKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAdminKeysOperations)s).GetAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -54,8 +58,8 @@ public static partial class AdminKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -63,7 +67,7 @@ public static partial class AdminKeysOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IAdminKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IAdminKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -84,8 +88,8 @@ public static partial class AdminKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Specifies which key to regenerate. Valid values include 'primary' and @@ -96,7 +100,7 @@ public static partial class AdminKeysOperationsExtensions /// public static AdminKeyResult Regenerate(this IAdminKeysOperations operations, string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IAdminKeysOperations)s).RegenerateAsync(resourceGroupName, searchServiceName, keyKind, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.RegenerateAsync(resourceGroupName, searchServiceName, keyKind, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -112,8 +116,8 @@ public static partial class AdminKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Specifies which key to regenerate. Valid values include 'primary' and @@ -125,7 +129,7 @@ public static partial class AdminKeysOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task RegenerateAsync(this IAdminKeysOperations operations, string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task RegenerateAsync(this IAdminKeysOperations operations, string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.RegenerateWithHttpMessagesAsync(resourceGroupName, searchServiceName, keyKind, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/SDKs/Search/Management/Management.Search/Generated/IAdminKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IAdminKeysOperations.cs index ffd8f23db40e6..0137cf3d08f20 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/IAdminKeysOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/IAdminKeysOperations.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// AdminKeysOperations operations. @@ -22,9 +29,9 @@ public partial interface IAdminKeysOperations /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -48,16 +55,16 @@ public partial interface IAdminKeysOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Regenerates either the primary or secondary admin API key. You can /// only regenerate one key at a time. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -85,6 +92,6 @@ public partial interface IAdminKeysOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> RegenerateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> RegenerateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, AdminKeyKind keyKind, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/IQueryKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IQueryKeysOperations.cs index 574691e91fe1e..29d992b667765 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/IQueryKeysOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/IQueryKeysOperations.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// QueryKeysOperations operations. @@ -17,14 +24,14 @@ namespace Microsoft.Azure.Management.Search public partial interface IQueryKeysOperations { /// - /// Generates a new query key for the specified Search service. You - /// can create up to 50 query keys per service. + /// Generates a new query key for the specified Search service. You can + /// create up to 50 query keys per service. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -51,16 +58,16 @@ public partial interface IQueryKeysOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns the list of query API keys for the given Azure Search /// service. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -84,7 +91,7 @@ public partial interface IQueryKeysOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListBySearchServiceWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListBySearchServiceWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified query key. Unlike admin keys, query keys are /// not regenerated. The process for regenerating a query key is to @@ -92,9 +99,9 @@ public partial interface IQueryKeysOperations /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -119,6 +126,6 @@ public partial interface IQueryKeysOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs index e78134a81bd60..d66b35d8b07a2 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs @@ -1,16 +1,19 @@ +// // 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.Search { using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using Newtonsoft.Json; /// /// Client that can be used to manage Azure Search services and API keys. @@ -25,17 +28,17 @@ public partial interface ISearchManagementClient : 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; } /// /// The unique identifier for a Microsoft Azure subscription. You can @@ -62,8 +65,8 @@ public partial interface ISearchManagementClient : 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; } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs index a791cf4bde3b8..160fe03a4c2d5 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// ServicesOperations operations. @@ -17,23 +24,23 @@ namespace Microsoft.Azure.Management.Search public partial interface IServicesOperations { /// - /// Creates or updates a Search service in the given resource group. - /// If the Search service already exists, all properties will be - /// updated with the given values. + /// Creates or updates a Search service in the given resource group. If + /// the Search service already exists, all properties will be updated + /// with the given values. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service to create or update. Search /// service names must only contain lowercase letters, digits or /// dashes, cannot use dash as the first two or last one characters, /// cannot contain consecutive dashes, and must be between 2 and 60 - /// characters in length. Search service names must be globally - /// unique since they are part of the service URI + /// characters in length. Search service names must be globally unique + /// since they are part of the service URI /// (https://<name>.search.windows.net). You cannot change the /// service name after the service is created. /// @@ -58,16 +65,16 @@ public partial interface IServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the Search service with the given name in the given resource /// group. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -91,16 +98,16 @@ public partial interface IServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a Search service in the given resource group, along with /// its associated resources. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// The name of the Azure Search service associated with the specified @@ -121,15 +128,15 @@ public partial interface IServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a list of all Search services in the given resource group. /// /// /// - /// The name of the resource group within the current subscription. - /// You can obtain this value from the Azure Resource Manager API or - /// the portal. + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. /// /// /// Additional parameters for the operation @@ -149,7 +156,7 @@ public partial interface IServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Checks whether or not the given Search service name is available /// for use. Search service names must be globally unique since they @@ -158,11 +165,10 @@ public partial interface IServicesOperations /// /// /// - /// The Search service name to validate. Search service names must - /// only contain lowercase letters, digits or dashes, cannot use dash - /// as the first two or last one characters, cannot contain - /// consecutive dashes, and must be between 2 and 60 characters in - /// length. + /// The Search service name to validate. Search service names must only + /// contain lowercase letters, digits or dashes, cannot use dash as the + /// first two or last one characters, cannot contain consecutive + /// dashes, and must be between 2 and 60 characters in length. /// /// /// Additional parameters for the operation @@ -182,6 +188,49 @@ public partial interface IServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a Search service in the given resource group. If + /// the Search service already exists, all properties will be updated + /// with the given values. + /// + /// + /// + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the Azure Search service to create or update. Search + /// service names must only contain lowercase letters, digits or + /// dashes, cannot use dash as the first two or last one characters, + /// cannot contain consecutive dashes, and must be between 2 and 60 + /// characters in length. Search service names must be globally unique + /// since they are part of the service URI + /// (https://<name>.search.windows.net). You cannot change the + /// service name after the service is created. + /// + /// + /// The definition of the Search service to create or update. + /// + /// + /// Additional parameters for the 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyKind.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyKind.cs index c4c6384240acb..1c427c26575e4 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyKind.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyKind.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for AdminKeyKind. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum AdminKeyKind { - [System.Runtime.Serialization.EnumMember(Value = "primary")] + [EnumMember(Value = "primary")] Primary, - [System.Runtime.Serialization.EnumMember(Value = "secondary")] + [EnumMember(Value = "secondary")] Secondary } + internal static class AdminKeyKindEnumExtension + { + internal static string ToSerializedValue(this AdminKeyKind? value) + { + return value == null ? null : ((AdminKeyKind)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this AdminKeyKind value) + { + switch( value ) + { + case AdminKeyKind.Primary: + return "primary"; + case AdminKeyKind.Secondary: + return "secondary"; + } + return null; + } + + internal static AdminKeyKind? ParseAdminKeyKind(this string value) + { + switch( value ) + { + case "primary": + return AdminKeyKind.Primary; + case "secondary": + return AdminKeyKind.Secondary; + } + return null; + } + } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyResult.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyResult.cs index 9fba01214c1e5..4be0bd0adcd1b 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyResult.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/AdminKeyResult.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +22,10 @@ public partial class AdminKeyResult /// /// Initializes a new instance of the AdminKeyResult class. /// - public AdminKeyResult() { } + public AdminKeyResult() + { + CustomInit(); + } /// /// Initializes a new instance of the AdminKeyResult class. @@ -32,18 +38,24 @@ public AdminKeyResult() { } { PrimaryKey = primaryKey; SecondaryKey = secondaryKey; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the primary admin API key of the Search service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "primaryKey")] + [JsonProperty(PropertyName = "primaryKey")] public string PrimaryKey { get; private set; } /// /// Gets the secondary admin API key of the Search service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "secondaryKey")] + [JsonProperty(PropertyName = "secondaryKey")] public string SecondaryKey { get; private set; } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs index 1cf01b9c9e32b..1e909a6b63745 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityInput.cs @@ -1,13 +1,17 @@ +// // 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.Search.Models { + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +22,10 @@ public partial class CheckNameAvailabilityInput /// /// Initializes a new instance of the CheckNameAvailabilityInput class. /// - public CheckNameAvailabilityInput() { } + public CheckNameAvailabilityInput() + { + CustomInit(); + } /// /// Initializes a new instance of the CheckNameAvailabilityInput class. @@ -31,6 +38,7 @@ public CheckNameAvailabilityInput() { } public CheckNameAvailabilityInput(string name) { Name = name; + CustomInit(); } /// /// Static constructor for CheckNameAvailabilityInput class. @@ -40,34 +48,39 @@ static CheckNameAvailabilityInput() Type = "searchServices"; } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the Search service name to validate. Search service - /// names must only contain lowercase letters, digits or dashes, - /// cannot use dash as the first two or last one characters, cannot - /// contain consecutive dashes, and must be between 2 and 60 - /// characters in length. + /// names must only contain lowercase letters, digits or dashes, cannot + /// use dash as the first two or last one characters, cannot contain + /// consecutive dashes, and must be between 2 and 60 characters in + /// length. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// The type of the resource whose name is to be validated. This value /// must always be 'searchServices'. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public static string Type { get; private 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"); } } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs index d56aa34d8699d..35d220844adcb 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityOutput.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/CheckNameAvailabilityOutput.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +22,10 @@ public partial class CheckNameAvailabilityOutput /// Initializes a new instance of the CheckNameAvailabilityOutput /// class. /// - public CheckNameAvailabilityOutput() { } + public CheckNameAvailabilityOutput() + { + CustomInit(); + } /// /// Initializes a new instance of the CheckNameAvailabilityOutput @@ -41,22 +47,28 @@ public CheckNameAvailabilityOutput() { } IsNameAvailable = isNameAvailable; Reason = reason; Message = message; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets a value indicating whether the name is available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nameAvailable")] + [JsonProperty(PropertyName = "nameAvailable")] public bool? IsNameAvailable { get; private set; } /// /// Gets the reason why the name is not available. 'Invalid' indicates - /// the name provided does not match the naming requirements - /// (incorrect length, unsupported characters, etc.). 'AlreadyExists' - /// indicates that the name is already in use and is therefore - /// unavailable. Possible values include: 'Invalid', 'AlreadyExists' + /// the name provided does not match the naming requirements (incorrect + /// length, unsupported characters, etc.). 'AlreadyExists' indicates + /// that the name is already in use and is therefore unavailable. + /// Possible values include: 'Invalid', 'AlreadyExists' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "reason")] + [JsonProperty(PropertyName = "reason")] public string Reason { get; private set; } /// @@ -64,7 +76,7 @@ public CheckNameAvailabilityOutput() { } /// resource naming requirements. Available only if 'Invalid' is /// returned in the 'reason' property. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + [JsonProperty(PropertyName = "message")] public string Message { get; private set; } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/HostingMode.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/HostingMode.cs index 5c039d46a2a0d..fbd05be44cc64 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/HostingMode.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/HostingMode.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for HostingMode. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum HostingMode { - [System.Runtime.Serialization.EnumMember(Value = "default")] + [EnumMember(Value = "default")] Default, - [System.Runtime.Serialization.EnumMember(Value = "highDensity")] + [EnumMember(Value = "highDensity")] HighDensity } + internal static class HostingModeEnumExtension + { + internal static string ToSerializedValue(this HostingMode? value) + { + return value == null ? null : ((HostingMode)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this HostingMode value) + { + switch( value ) + { + case HostingMode.Default: + return "default"; + case HostingMode.HighDensity: + return "highDensity"; + } + return null; + } + + internal static HostingMode? ParseHostingMode(this string value) + { + switch( value ) + { + case "default": + return HostingMode.Default; + case "highDensity": + return HostingMode.HighDensity; + } + return null; + } + } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/Page.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Page.cs index 35519341fba00..ccbd138f67168 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/Page.cs +++ b/src/SDKs/Search/Management/Management.Search/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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.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("")] - public System.String NextPageLink { get; private set; } + [JsonProperty("")] + 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/Search/Management/Management.Search/Generated/Models/ProvisioningState.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/ProvisioningState.cs index f1fde0116841c..27a3b9b396587 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/ProvisioningState.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/ProvisioningState.cs @@ -1,25 +1,66 @@ +// // 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.Search.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for ProvisioningState. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ProvisioningState { - [System.Runtime.Serialization.EnumMember(Value = "succeeded")] + [EnumMember(Value = "succeeded")] Succeeded, - [System.Runtime.Serialization.EnumMember(Value = "provisioning")] + [EnumMember(Value = "provisioning")] Provisioning, - [System.Runtime.Serialization.EnumMember(Value = "failed")] + [EnumMember(Value = "failed")] Failed } + internal static class ProvisioningStateEnumExtension + { + internal static string ToSerializedValue(this ProvisioningState? value) + { + return value == null ? null : ((ProvisioningState)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ProvisioningState value) + { + switch( value ) + { + case ProvisioningState.Succeeded: + return "succeeded"; + case ProvisioningState.Provisioning: + return "provisioning"; + case ProvisioningState.Failed: + return "failed"; + } + return null; + } + + internal static ProvisioningState? ParseProvisioningState(this string value) + { + switch( value ) + { + case "succeeded": + return ProvisioningState.Succeeded; + case "provisioning": + return ProvisioningState.Provisioning; + case "failed": + return ProvisioningState.Failed; + } + return null; + } + } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/QueryKey.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/QueryKey.cs index 9b6abd289f5a6..3b13e94f95408 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/QueryKey.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/QueryKey.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +22,10 @@ public partial class QueryKey /// /// Initializes a new instance of the QueryKey class. /// - public QueryKey() { } + public QueryKey() + { + CustomInit(); + } /// /// Initializes a new instance of the QueryKey class. @@ -31,18 +37,24 @@ public QueryKey() { } { Name = name; Key = key; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the query API key; may be empty. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// /// Gets the value of the query API key. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "key")] + [JsonProperty(PropertyName = "key")] public string Key { get; private set; } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs index a8eb3343dc045..eb792261e2b47 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs @@ -1,31 +1,41 @@ +// // 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.Search.Models { + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Base type for all Azure resources. /// - 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. /// /// The geographic location of the resource. - /// This must be one of the supported and registered Azure Geo - /// Regions (for example, West US, East US, Southeast Asia, and so + /// This must be one of the supported and registered Azure Geo Regions + /// (for example, West US, East US, Southeast Asia, and so /// forth). /// The ID of the resource. This can be used with the /// Azure Resource Manager to link resources together. @@ -33,60 +43,66 @@ public Resource() { } /// The resource type. /// Tags to help categorize the resource in the /// Azure portal. - 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)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; Type = type; Location = location; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the ID of the resource. This can be used with the Azure /// Resource Manager to link resources together. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// /// Gets the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// /// Gets the resource type. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// /// Gets or sets the geographic location of the resource. This must be - /// one of the supported and registered Azure Geo Regions (for - /// example, West US, East US, Southeast Asia, and so forth). + /// one of the supported and registered Azure Geo Regions (for example, + /// West US, East US, Southeast Asia, and so forth). /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets or sets tags to help categorize the resource in the Azure /// portal. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "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 (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs index e4d6d91f2d044..6bde03595e8f7 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +22,10 @@ public partial class SearchManagementRequestOptions /// Initializes a new instance of the SearchManagementRequestOptions /// class. /// - public SearchManagementRequestOptions() { } + public SearchManagementRequestOptions() + { + CustomInit(); + } /// /// Initializes a new instance of the SearchManagementRequestOptions @@ -31,14 +37,20 @@ public SearchManagementRequestOptions() { } public SearchManagementRequestOptions(System.Guid? clientRequestId = default(System.Guid?)) { ClientRequestId = clientRequestId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets a client-generated GUID value that identifies this /// request. If specified, this will be included in response /// information as a way to track the request. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "")] + [JsonProperty(PropertyName = "")] public System.Guid? ClientRequestId { get; set; } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs index e908e71a50865..46b6419d19cb6 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs @@ -1,32 +1,42 @@ +// // 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.Search.Models { + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// Describes an Azure Search service and its current state. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class SearchService : Resource { /// /// Initializes a new instance of the SearchService class. /// - public SearchService() { } + public SearchService() + { + CustomInit(); + } /// /// Initializes a new instance of the SearchService class. /// /// The geographic location of the resource. - /// This must be one of the supported and registered Azure Geo - /// Regions (for example, West US, East US, Southeast Asia, and so + /// This must be one of the supported and registered Azure Geo Regions + /// (for example, West US, East US, Southeast Asia, and so /// forth). /// The SKU of the Search Service, which determines /// price tier and capacity limits. @@ -38,52 +48,51 @@ public SearchService() { } /// Azure portal. /// The number of replicas in the Search /// service. If specified, it must be a value between 1 and 12 - /// inclusive for standard SKUs or between 1 and 3 inclusive for - /// basic SKU. - /// The number of partitions in the - /// Search service; if specified, it can be 1, 2, 3, 4, 6, or 12. - /// Values greater than 1 are only valid for standard SKUs. For - /// 'standard3' services with hostingMode set to 'highDensity', the - /// allowed values are between 1 and 3. + /// inclusive for standard SKUs or between 1 and 3 inclusive for basic + /// SKU. + /// The number of partitions in the Search + /// service; if specified, it can be 1, 2, 3, 4, 6, or 12. Values + /// greater than 1 are only valid for standard SKUs. For 'standard3' + /// services with hostingMode set to 'highDensity', the allowed values + /// are between 1 and 3. /// Applicable only for the standard3 SKU. - /// You can set this property to enable up to 3 high density - /// partitions that allow up to 1000 indexes, which is much higher - /// than the maximum indexes allowed for any other SKU. For the - /// standard3 SKU, the value is either 'default' or 'highDensity'. - /// For all other SKUs, this value must be 'default'. Possible values - /// include: 'default', 'highDensity' + /// You can set this property to enable up to 3 high density partitions + /// that allow up to 1000 indexes, which is much higher than the + /// maximum indexes allowed for any other SKU. For the standard3 SKU, + /// the value is either 'default' or 'highDensity'. For all other SKUs, + /// this value must be 'default'. Possible values include: 'default', + /// 'highDensity' /// The status of the Search service. Possible /// values include: 'running': The Search service is running and no /// provisioning operations are underway. 'provisioning': The Search - /// service is being provisioned or scaled up or down. 'deleting': - /// The Search service is being deleted. 'degraded': The Search - /// service is degraded. This can occur when the underlying search - /// units are not healthy. The Search service is most likely - /// operational, but performance might be slow and some requests - /// might be dropped. 'disabled': The Search service is disabled. In - /// this state, the service will reject all API requests. 'error': - /// The Search service is in an error state. If your service is in - /// the degraded, disabled, or error states, it means the Azure - /// Search team is actively investigating the underlying issue. - /// Dedicated services in these states are still chargeable based on - /// the number of search units provisioned. Possible values include: - /// 'running', 'provisioning', 'deleting', 'degraded', 'disabled', - /// 'error' + /// service is being provisioned or scaled up or down. 'deleting': The + /// Search service is being deleted. 'degraded': The Search service is + /// degraded. This can occur when the underlying search units are not + /// healthy. The Search service is most likely operational, but + /// performance might be slow and some requests might be dropped. + /// 'disabled': The Search service is disabled. In this state, the + /// service will reject all API requests. 'error': The Search service + /// is in an error state. If your service is in the degraded, disabled, + /// or error states, it means the Azure Search team is actively + /// investigating the underlying issue. Dedicated services in these + /// states are still chargeable based on the number of search units + /// provisioned. Possible values include: 'running', 'provisioning', + /// 'deleting', 'degraded', 'disabled', 'error' /// The details of the Search service /// status. /// The state of the last provisioning /// operation performed on the Search service. Provisioning is an /// intermediate state that occurs while service capacity is being - /// established. After capacity is set up, provisioningState changes - /// to either 'succeeded' or 'failed'. Client applications can poll + /// established. After capacity is set up, provisioningState changes to + /// either 'succeeded' or 'failed'. Client applications can poll /// provisioning status (the recommended polling interval is from 30 - /// seconds to one minute) by using the Get Search Service operation - /// to see when an operation is completed. If you are using the free + /// seconds to one minute) by using the Get Search Service operation to + /// see when an operation is completed. If you are using the free /// service, this value tends to come back as 'succeeded' directly in - /// the call to Create Search service. This is because the free - /// service uses capacity that is already set up. Possible values - /// include: 'succeeded', 'provisioning', 'failed' - public SearchService(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), int? replicaCount = default(int?), int? partitionCount = default(int?), HostingMode? hostingMode = default(HostingMode?), SearchServiceStatus? status = default(SearchServiceStatus?), string statusDetails = default(string), ProvisioningState? provisioningState = default(ProvisioningState?)) + /// the call to Create Search service. This is because the free service + /// uses capacity that is already set up. Possible values include: + /// 'succeeded', 'provisioning', 'failed' + public SearchService(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), int? replicaCount = default(int?), int? partitionCount = default(int?), HostingMode? hostingMode = default(HostingMode?), SearchServiceStatus? status = default(SearchServiceStatus?), string statusDetails = default(string), ProvisioningState? provisioningState = default(ProvisioningState?)) : base(location, id, name, type, tags) { ReplicaCount = replicaCount; @@ -93,36 +102,42 @@ public SearchService() { } StatusDetails = statusDetails; ProvisioningState = provisioningState; Sku = sku; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the number of replicas in the Search service. If /// specified, it must be a value between 1 and 12 inclusive for /// standard SKUs or between 1 and 3 inclusive for basic SKU. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.replicaCount")] + [JsonProperty(PropertyName = "properties.replicaCount")] public int? ReplicaCount { get; set; } /// /// Gets or sets the number of partitions in the Search service; if /// specified, it can be 1, 2, 3, 4, 6, or 12. Values greater than 1 /// are only valid for standard SKUs. For 'standard3' services with - /// hostingMode set to 'highDensity', the allowed values are between - /// 1 and 3. + /// hostingMode set to 'highDensity', the allowed values are between 1 + /// and 3. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.partitionCount")] + [JsonProperty(PropertyName = "properties.partitionCount")] public int? PartitionCount { get; set; } /// /// Gets or sets applicable only for the standard3 SKU. You can set - /// this property to enable up to 3 high density partitions that - /// allow up to 1000 indexes, which is much higher than the maximum - /// indexes allowed for any other SKU. For the standard3 SKU, the - /// value is either 'default' or 'highDensity'. For all other SKUs, - /// this value must be 'default'. Possible values include: 'default', + /// this property to enable up to 3 high density partitions that allow + /// up to 1000 indexes, which is much higher than the maximum indexes + /// allowed for any other SKU. For the standard3 SKU, the value is + /// either 'default' or 'highDensity'. For all other SKUs, this value + /// must be 'default'. Possible values include: 'default', /// 'highDensity' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.hostingMode")] + [JsonProperty(PropertyName = "properties.hostingMode")] public HostingMode? HostingMode { get; set; } /// @@ -136,50 +151,49 @@ public SearchService() { } /// performance might be slow and some requests might be dropped. /// 'disabled': The Search service is disabled. In this state, the /// service will reject all API requests. 'error': The Search service - /// is in an error state. If your service is in the degraded, - /// disabled, or error states, it means the Azure Search team is - /// actively investigating the underlying issue. Dedicated services - /// in these states are still chargeable based on the number of - /// search units provisioned. Possible values include: 'running', - /// 'provisioning', 'deleting', 'degraded', 'disabled', 'error' + /// is in an error state. If your service is in the degraded, disabled, + /// or error states, it means the Azure Search team is actively + /// investigating the underlying issue. Dedicated services in these + /// states are still chargeable based on the number of search units + /// provisioned. Possible values include: 'running', 'provisioning', + /// 'deleting', 'degraded', 'disabled', 'error' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.status")] + [JsonProperty(PropertyName = "properties.status")] public SearchServiceStatus? Status { get; private set; } /// /// Gets the details of the Search service status. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.statusDetails")] + [JsonProperty(PropertyName = "properties.statusDetails")] public string StatusDetails { get; private set; } /// /// Gets the state of the last provisioning operation performed on the /// Search service. Provisioning is an intermediate state that occurs - /// while service capacity is being established. After capacity is - /// set up, provisioningState changes to either 'succeeded' or - /// 'failed'. Client applications can poll provisioning status (the - /// recommended polling interval is from 30 seconds to one minute) by - /// using the Get Search Service operation to see when an operation - /// is completed. If you are using the free service, this value tends - /// to come back as 'succeeded' directly in the call to Create Search - /// service. This is because the free service uses capacity that is - /// already set up. Possible values include: 'succeeded', - /// 'provisioning', 'failed' + /// while service capacity is being established. After capacity is set + /// up, provisioningState changes to either 'succeeded' or 'failed'. + /// Client applications can poll provisioning status (the recommended + /// polling interval is from 30 seconds to one minute) by using the Get + /// Search Service operation to see when an operation is completed. If + /// you are using the free service, this value tends to come back as + /// 'succeeded' directly in the call to Create Search service. This is + /// because the free service uses capacity that is already set up. + /// Possible values include: 'succeeded', 'provisioning', 'failed' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.provisioningState")] + [JsonProperty(PropertyName = "properties.provisioningState")] public ProvisioningState? ProvisioningState { get; private set; } /// /// Gets or sets the SKU of the Search Service, which determines price /// tier and capacity limits. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sku")] + [JsonProperty(PropertyName = "sku")] public Sku Sku { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -187,23 +201,23 @@ 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.ReplicaCount > 12) + if (ReplicaCount > 12) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "ReplicaCount", 12); + throw new ValidationException(ValidationRules.InclusiveMaximum, "ReplicaCount", 12); } - if (this.ReplicaCount < 1) + if (ReplicaCount < 1) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "ReplicaCount", 1); + throw new ValidationException(ValidationRules.InclusiveMinimum, "ReplicaCount", 1); } - if (this.PartitionCount > 12) + if (PartitionCount > 12) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "PartitionCount", 12); + throw new ValidationException(ValidationRules.InclusiveMaximum, "PartitionCount", 12); } - if (this.PartitionCount < 1) + if (PartitionCount < 1) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "PartitionCount", 1); + throw new ValidationException(ValidationRules.InclusiveMinimum, "PartitionCount", 1); } } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchServiceStatus.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchServiceStatus.cs index fcffb2a7ca685..af2dfa07a5032 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchServiceStatus.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchServiceStatus.cs @@ -1,31 +1,84 @@ +// // 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.Search.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for SearchServiceStatus. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum SearchServiceStatus { - [System.Runtime.Serialization.EnumMember(Value = "running")] + [EnumMember(Value = "running")] Running, - [System.Runtime.Serialization.EnumMember(Value = "provisioning")] + [EnumMember(Value = "provisioning")] Provisioning, - [System.Runtime.Serialization.EnumMember(Value = "deleting")] + [EnumMember(Value = "deleting")] Deleting, - [System.Runtime.Serialization.EnumMember(Value = "degraded")] + [EnumMember(Value = "degraded")] Degraded, - [System.Runtime.Serialization.EnumMember(Value = "disabled")] + [EnumMember(Value = "disabled")] Disabled, - [System.Runtime.Serialization.EnumMember(Value = "error")] + [EnumMember(Value = "error")] Error } + internal static class SearchServiceStatusEnumExtension + { + internal static string ToSerializedValue(this SearchServiceStatus? value) + { + return value == null ? null : ((SearchServiceStatus)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this SearchServiceStatus value) + { + switch( value ) + { + case SearchServiceStatus.Running: + return "running"; + case SearchServiceStatus.Provisioning: + return "provisioning"; + case SearchServiceStatus.Deleting: + return "deleting"; + case SearchServiceStatus.Degraded: + return "degraded"; + case SearchServiceStatus.Disabled: + return "disabled"; + case SearchServiceStatus.Error: + return "error"; + } + return null; + } + + internal static SearchServiceStatus? ParseSearchServiceStatus(this string value) + { + switch( value ) + { + case "running": + return SearchServiceStatus.Running; + case "provisioning": + return SearchServiceStatus.Provisioning; + case "deleting": + return SearchServiceStatus.Deleting; + case "degraded": + return SearchServiceStatus.Degraded; + case "disabled": + return SearchServiceStatus.Disabled; + case "error": + return SearchServiceStatus.Error; + } + return null; + } + } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/Sku.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Sku.cs index c92c18bec4d40..74293bbffb49f 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/Sku.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/Sku.cs @@ -1,33 +1,41 @@ +// // 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.Search.Models { + using Newtonsoft.Json; using System.Linq; /// - /// Defines the SKU of an Azure Search Service, which determines price - /// tier and capacity limits. - /// + /// Defines the SKU of an Azure Search Service, which determines price tier + /// and capacity limits. + /// /// 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. /// /// The SKU of the Search service. Valid values - /// include: 'free': Shared service. 'basic': Dedicated service with - /// up to 3 replicas. 'standard': Dedicated service with up to 12 + /// include: 'free': Shared service. 'basic': Dedicated service with up + /// to 3 replicas. 'standard': Dedicated service with up to 12 /// partitions and 12 replicas. 'standard2': Similar to standard, but /// with more capacity per search unit. 'standard3': Offers maximum /// capacity per search unit with up to 12 partitions and 12 replicas @@ -37,20 +45,26 @@ public Sku() { } public Sku(SkuName? name = default(SkuName?)) { Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the SKU of the Search service. Valid values include: /// 'free': Shared service. 'basic': Dedicated service with up to 3 /// replicas. 'standard': Dedicated service with up to 12 partitions /// and 12 replicas. 'standard2': Similar to standard, but with more - /// capacity per search unit. 'standard3': Offers maximum capacity - /// per search unit with up to 12 partitions and 12 replicas (or up - /// to 3 partitions with more indexes if you also set the hostingMode + /// capacity per search unit. 'standard3': Offers maximum capacity per + /// search unit with up to 12 partitions and 12 replicas (or up to 3 + /// partitions with more indexes if you also set the hostingMode /// property to 'highDensity'). Possible values include: 'free', /// 'basic', 'standard', 'standard2', 'standard3' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public SkuName? Name { get; set; } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/SkuName.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SkuName.cs index f307511caca66..c56125db0679b 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SkuName.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SkuName.cs @@ -1,29 +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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; /// /// Defines values for SkuName. /// - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum SkuName { - [System.Runtime.Serialization.EnumMember(Value = "free")] + [EnumMember(Value = "free")] Free, - [System.Runtime.Serialization.EnumMember(Value = "basic")] + [EnumMember(Value = "basic")] Basic, - [System.Runtime.Serialization.EnumMember(Value = "standard")] + [EnumMember(Value = "standard")] Standard, - [System.Runtime.Serialization.EnumMember(Value = "standard2")] + [EnumMember(Value = "standard2")] Standard2, - [System.Runtime.Serialization.EnumMember(Value = "standard3")] + [EnumMember(Value = "standard3")] Standard3 } + internal static class SkuNameEnumExtension + { + internal static string ToSerializedValue(this SkuName? value) + { + return value == null ? null : ((SkuName)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this SkuName value) + { + switch( value ) + { + case SkuName.Free: + return "free"; + case SkuName.Basic: + return "basic"; + case SkuName.Standard: + return "standard"; + case SkuName.Standard2: + return "standard2"; + case SkuName.Standard3: + return "standard3"; + } + return null; + } + + internal static SkuName? ParseSkuName(this string value) + { + switch( value ) + { + case "free": + return SkuName.Free; + case "basic": + return SkuName.Basic; + case "standard": + return SkuName.Standard; + case "standard2": + return SkuName.Standard2; + case "standard3": + return SkuName.Standard3; + } + return null; + } + } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/UnavailableNameReason.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/UnavailableNameReason.cs index 018bebc3ea881..ad0d1e16d6bb8 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/UnavailableNameReason.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/UnavailableNameReason.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search.Models { diff --git a/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperations.cs index 96f386413084b..6e18aaa24a5d1 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperations.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { - 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; /// /// QueryKeysOperations operations. /// - internal partial class QueryKeysOperations : Microsoft.Rest.IServiceOperations, IQueryKeysOperations + internal partial class QueryKeysOperations : IServiceOperations, IQueryKeysOperations { /// /// Initializes a new instance of the QueryKeysOperations class. @@ -29,11 +38,11 @@ internal partial class QueryKeysOperations : Microsoft.Rest.IServiceOperations internal QueryKeysOperations(SearchManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -51,8 +60,8 @@ internal QueryKeysOperations(SearchManagementClient client) /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// The name of the new query API key. @@ -66,39 +75,42 @@ internal QueryKeysOperations(SearchManagementClient 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> CreateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -106,52 +118,52 @@ internal QueryKeysOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("name", name); tracingParameters.Add("clientRequestId", clientRequestId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Create", 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.Search/searchServices/{searchServiceName}/createQueryKey/{name}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); _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 (clientRequestId != null) { @@ -159,8 +171,10 @@ internal QueryKeysOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -176,51 +190,51 @@ internal QueryKeysOperations(SearchManagementClient 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) @@ -230,7 +244,7 @@ internal QueryKeysOperations(SearchManagementClient 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")) @@ -243,21 +257,21 @@ internal QueryKeysOperations(SearchManagementClient 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; } @@ -271,8 +285,8 @@ internal QueryKeysOperations(SearchManagementClient client) /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -283,35 +297,38 @@ internal QueryKeysOperations(SearchManagementClient 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>> ListBySearchServiceWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListBySearchServiceWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } - 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -319,50 +336,50 @@ internal QueryKeysOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("clientRequestId", clientRequestId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListBySearchService", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySearchService", 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.Search/searchServices/{searchServiceName}/listQueryKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); - _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 (clientRequestId != null) { @@ -370,8 +387,10 @@ internal QueryKeysOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -387,51 +406,51 @@ internal QueryKeysOperations(SearchManagementClient 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) @@ -441,7 +460,7 @@ internal QueryKeysOperations(SearchManagementClient 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")) @@ -454,29 +473,29 @@ internal QueryKeysOperations(SearchManagementClient 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 the specified query key. Unlike admin keys, query keys are not - /// regenerated. The process for regenerating a query key is to delete and - /// then recreate it. + /// regenerated. The process for regenerating a query key is to delete and then + /// recreate it. /// /// /// @@ -484,8 +503,8 @@ internal QueryKeysOperations(SearchManagementClient client) /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// The query key to be deleted. Query keys are identified by value, not by @@ -500,36 +519,39 @@ internal QueryKeysOperations(SearchManagementClient 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 searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } if (key == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "key"); + throw new ValidationException(ValidationRules.CannotBeNull, "key"); } - 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -537,52 +559,52 @@ internal QueryKeysOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("key", key); tracingParameters.Add("clientRequestId", clientRequestId); 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.Search/searchServices/{searchServiceName}/deleteQueryKey/{key}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); _url = _url.Replace("{key}", System.Uri.EscapeDataString(key)); - _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 (clientRequestId != null) { @@ -590,8 +612,10 @@ internal QueryKeysOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -607,51 +631,51 @@ internal QueryKeysOperations(SearchManagementClient 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 && (int)_statusCode != 404) { - 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) @@ -661,7 +685,7 @@ internal QueryKeysOperations(SearchManagementClient 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")) @@ -670,7 +694,7 @@ internal QueryKeysOperations(SearchManagementClient client) } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperationsExtensions.cs index ce0c956394b45..4cfd9eaca328d 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperationsExtensions.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/QueryKeysOperationsExtensions.cs @@ -1,16 +1,22 @@ +// // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for QueryKeysOperations. @@ -30,8 +36,8 @@ public static partial class QueryKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// The name of the new query API key. @@ -41,7 +47,7 @@ public static partial class QueryKeysOperationsExtensions /// public static QueryKey Create(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IQueryKeysOperations)s).CreateAsync(resourceGroupName, searchServiceName, name, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, searchServiceName, name, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -57,8 +63,8 @@ public static partial class QueryKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// The name of the new query API key. @@ -69,7 +75,7 @@ public static partial class QueryKeysOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateAsync(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateAsync(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, searchServiceName, name, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -89,15 +95,15 @@ public static partial class QueryKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation /// - public static System.Collections.Generic.IEnumerable ListBySearchService(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) + public static IEnumerable ListBySearchService(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IQueryKeysOperations)s).ListBySearchServiceAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySearchServiceAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -112,8 +118,8 @@ public static partial class QueryKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -121,7 +127,7 @@ public static partial class QueryKeysOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListBySearchServiceAsync(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListBySearchServiceAsync(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListBySearchServiceWithHttpMessagesAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -131,8 +137,8 @@ public static partial class QueryKeysOperationsExtensions /// /// Deletes the specified query key. Unlike admin keys, query keys are not - /// regenerated. The process for regenerating a query key is to delete and - /// then recreate it. + /// regenerated. The process for regenerating a query key is to delete and then + /// recreate it. /// /// /// @@ -143,8 +149,8 @@ public static partial class QueryKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// The query key to be deleted. Query keys are identified by value, not by @@ -155,13 +161,13 @@ public static partial class QueryKeysOperationsExtensions /// public static void Delete(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IQueryKeysOperations)s).DeleteAsync(resourceGroupName, searchServiceName, key, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, searchServiceName, key, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// /// Deletes the specified query key. Unlike admin keys, query keys are not - /// regenerated. The process for regenerating a query key is to delete and - /// then recreate it. + /// regenerated. The process for regenerating a query key is to delete and then + /// recreate it. /// /// /// @@ -172,8 +178,8 @@ public static partial class QueryKeysOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// The query key to be deleted. Query keys are identified by value, not by @@ -185,9 +191,9 @@ public static partial class QueryKeysOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IQueryKeysOperations operations, string resourceGroupName, string searchServiceName, string key, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, searchServiceName, key, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, searchServiceName, key, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)).Dispose(); } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs new file mode 100644 index 0000000000000..b50fd2fcfe3c1 --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs @@ -0,0 +1,20 @@ + +using System; +using System.Collections.Generic; +using System.Linq; + +internal static partial class SdkInfo +{ + public static IEnumerable> ApiInfo_SearchManagementClient + { + get + { + return new Tuple[] + { + new Tuple("Search", "AdminKeys", "2015-08-19"), + new Tuple("Search", "QueryKeys", "2015-08-19"), + new Tuple("Search", "Services", "2015-08-19"), + }.AsEnumerable(); + } + } +} diff --git a/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs index e37a577af79c1..b9ec90550bdb2 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { - 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; /// /// Client that can be used to manage Azure Search services and API keys. /// - public partial class SearchManagementClient : Microsoft.Rest.ServiceClient, ISearchManagementClient, IAzureClient + public partial class SearchManagementClient : ServiceClient, ISearchManagementClient, IAzureClient { /// /// The base URI of the service. @@ -26,17 +34,17 @@ public partial class SearchManagementClient : 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; } /// /// The unique identifier for a Microsoft Azure subscription. You can obtain @@ -87,9 +95,9 @@ public partial class SearchManagementClient : Microsoft.Rest.ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected SearchManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected SearchManagementClient(params DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -101,9 +109,9 @@ protected SearchManagementClient(params System.Net.Http.DelegatingHandler[] hand /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected SearchManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected SearchManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -118,13 +126,13 @@ protected SearchManagementClient(System.Net.Http.HttpClientHandler rootHandler, /// /// Thrown when a required parameter is null /// - protected SearchManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected SearchManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -142,13 +150,13 @@ protected SearchManagementClient(System.Uri baseUri, params System.Net.Http.Dele /// /// Thrown when a required parameter is null /// - protected SearchManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected SearchManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -163,16 +171,16 @@ protected SearchManagementClient(System.Uri baseUri, System.Net.Http.HttpClientH /// /// Thrown when a required parameter is null /// - public SearchManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SearchManagementClient(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); } } @@ -191,16 +199,16 @@ public SearchManagementClient(Microsoft.Rest.ServiceClientCredentials credential /// /// Thrown when a required parameter is null /// - public SearchManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SearchManagementClient(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); } } @@ -219,7 +227,7 @@ public SearchManagementClient(Microsoft.Rest.ServiceClientCredentials credential /// /// Thrown when a required parameter is null /// - public SearchManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SearchManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -229,11 +237,11 @@ public SearchManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCr { 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); } } @@ -255,7 +263,7 @@ public SearchManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCr /// /// Thrown when a required parameter is null /// - public SearchManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SearchManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -265,11 +273,11 @@ public SearchManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCr { 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); } } @@ -282,43 +290,43 @@ public SearchManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCr /// private void Initialize() { - this.AdminKeys = new AdminKeysOperations(this); - this.QueryKeys = new QueryKeysOperations(this); - this.Services = new ServicesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.ApiVersion = "2015-08-19"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + AdminKeys = new AdminKeysOperations(this); + QueryKeys = new QueryKeysOperations(this); + Services = new ServicesOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2015-08-19"; + 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/Search/Management/Management.Search/Generated/ServicesOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs index ab8219700ba36..8c25a391aab0a 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.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. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { - 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; /// /// ServicesOperations operations. /// - internal partial class ServicesOperations : Microsoft.Rest.IServiceOperations, IServicesOperations + internal partial class ServicesOperations : IServiceOperations, IServicesOperations { /// /// Initializes a new instance of the ServicesOperations class. @@ -29,11 +38,11 @@ internal partial class ServicesOperations : Microsoft.Rest.IServiceOperations internal ServicesOperations(SearchManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -67,48 +76,71 @@ internal ServicesOperations(SearchManagementClient client) /// Additional parameters for the operation /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the Search service with the given name in the given resource group. + /// + /// + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service associated with the specified resource + /// group. + /// + /// + /// Additional parameters for the 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 System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } - if (service == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "service"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (service != null) - { - service.Validate(); - } - if (this.Client.ApiVersion == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -116,51 +148,50 @@ internal ServicesOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); - tracingParameters.Add("service", service); tracingParameters.Add("clientRequestId", clientRequestId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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.Search/searchServices/{searchServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); - _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("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 (clientRequestId != null) { @@ -168,8 +199,10 @@ internal ServicesOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -184,58 +217,52 @@ internal ServicesOperations(SearchManagementClient client) // Serialize Request string _requestContent = null; - if(service != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(service, 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 != 201) + 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) @@ -245,7 +272,7 @@ internal ServicesOperations(SearchManagementClient 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")) @@ -258,45 +285,28 @@ internal ServicesOperations(SearchManagementClient client) _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 == 201) - { - _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 the Search service with the given name in the given resource group. + /// Deletes a Search service in the given resource group, along with its + /// associated resources. /// /// /// @@ -304,8 +314,8 @@ internal ServicesOperations(SearchManagementClient client) /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -316,35 +326,35 @@ internal ServicesOperations(SearchManagementClient 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 searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } - 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -352,50 +362,50 @@ internal ServicesOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("clientRequestId", clientRequestId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", 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.Search/searchServices/{searchServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); - _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("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 (clientRequestId != null) { @@ -403,8 +413,10 @@ internal ServicesOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -420,51 +432,51 @@ internal ServicesOperations(SearchManagementClient 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 && (int)_statusCode != 404) { - 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) @@ -474,51 +486,28 @@ internal ServicesOperations(SearchManagementClient 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 = 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); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes a Search service in the given resource group, along with its - /// associated resources. + /// Gets a list of all Search services in the given resource group. /// /// /// /// The name of the resource group within the current subscription. You can /// obtain this value from the Azure Resource Manager API or the portal. /// - /// - /// The name of the Azure Search service associated with the specified - /// resource group. - /// /// /// Additional parameters for the operation /// @@ -528,32 +517,34 @@ internal ServicesOperations(SearchManagementClient 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "searchServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.ApiVersion == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) @@ -561,50 +552,48 @@ internal ServicesOperations(SearchManagementClient client) clientRequestId = searchManagementRequestOptions.ClientRequestId; } // 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("searchServiceName", searchServiceName); tracingParameters.Add("clientRequestId", clientRequestId); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", 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.Search/searchServices/{searchServiceName}").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); - _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 (clientRequestId != null) { @@ -612,8 +601,10 @@ internal ServicesOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -629,51 +620,51 @@ internal ServicesOperations(SearchManagementClient 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 && (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) @@ -683,27 +674,49 @@ internal ServicesOperations(SearchManagementClient 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 list of all Search services in the given resource group. + /// Checks whether or not the given Search service name is available for use. + /// Search service names must be globally unique since they are part of the + /// service URI (https://<name>.search.windows.net). /// /// - /// - /// The name of the resource group within the current subscription. You can - /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// The Search service name to validate. Search service names must only contain + /// lowercase letters, digits or dashes, cannot use dash as the first two or + /// last one characters, cannot contain consecutive dashes, and must be between + /// 2 and 60 characters in length. /// /// /// Additional parameters for the operation @@ -714,80 +727,87 @@ internal ServicesOperations(SearchManagementClient 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.ApiVersion == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - 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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) { clientRequestId = searchManagementRequestOptions.ClientRequestId; } + CheckNameAvailabilityInput checkNameAvailabilityInput = new CheckNameAvailabilityInput(); + if (name != null) + { + checkNameAvailabilityInput.Name = name; + } // 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); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("checkNameAvailabilityInput", checkNameAvailabilityInput); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", 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.Search/searchServices").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) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Search/checkNameAvailability").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("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 (clientRequestId != null) { @@ -795,8 +815,10 @@ internal ServicesOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -811,52 +833,58 @@ internal ServicesOperations(SearchManagementClient client) // Serialize Request string _requestContent = null; + if(checkNameAvailabilityInput != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(checkNameAvailabilityInput, 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) @@ -866,7 +894,7 @@ internal ServicesOperations(SearchManagementClient 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")) @@ -879,36 +907,46 @@ internal ServicesOperations(SearchManagementClient 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; } /// - /// Checks whether or not the given Search service name is available for use. - /// Search service names must be globally unique since they are part of the - /// service URI (https://<name>.search.windows.net). + /// Creates or updates a Search service in the given resource group. If the + /// Search service already exists, all properties will be updated with the + /// given values. /// /// - /// - /// The Search service name to validate. Search service names must only - /// contain lowercase letters, digits or dashes, cannot use dash as the first - /// two or last one characters, cannot contain consecutive dashes, and must - /// be between 2 and 60 characters in length. + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service to create or update. Search service + /// names must only contain lowercase letters, digits or dashes, cannot use + /// dash as the first two or last one characters, cannot contain consecutive + /// dashes, and must be between 2 and 60 characters in length. Search service + /// names must be globally unique since they are part of the service URI + /// (https://<name>.search.windows.net). You cannot change the service + /// name after the service is created. + /// + /// + /// The definition of the Search service to create or update. /// /// /// Additional parameters for the operation @@ -919,84 +957,98 @@ internal ServicesOperations(SearchManagementClient 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> CheckNameAvailabilityWithHttpMessagesAsync(string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), 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 (searchServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); } - if (name == null) + if (service == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "service"); + } + if (service != null) + { + service.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"); } System.Guid? clientRequestId = default(System.Guid?); if (searchManagementRequestOptions != null) { clientRequestId = searchManagementRequestOptions.ClientRequestId; } - CheckNameAvailabilityInput checkNameAvailabilityInput = new CheckNameAvailabilityInput(); - if (name != null) - { - checkNameAvailabilityInput.Name = name; - } // 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("searchServiceName", searchServiceName); + tracingParameters.Add("service", service); tracingParameters.Add("clientRequestId", clientRequestId); - tracingParameters.Add("checkNameAvailabilityInput", checkNameAvailabilityInput); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Search/checkNameAvailability").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.Search/searchServices/{searchServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); + _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 (clientRequestId != null) { @@ -1004,8 +1056,10 @@ internal ServicesOperations(SearchManagementClient client) { _httpRequest.Headers.Remove("x-ms-client-request-id"); } - _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, this.Client.SerializationSettings).Trim('"')); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1020,58 +1074,58 @@ internal ServicesOperations(SearchManagementClient client) // Serialize Request string _requestContent = null; - if(checkNameAvailabilityInput != null) + if(service != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(checkNameAvailabilityInput, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(service, 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) @@ -1081,7 +1135,7 @@ internal ServicesOperations(SearchManagementClient 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")) @@ -1094,21 +1148,39 @@ internal ServicesOperations(SearchManagementClient 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 (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 (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/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs index 5490a8e1ae212..baee9f2ce351c 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs @@ -1,16 +1,22 @@ +// // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. -// +// // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. +// namespace Microsoft.Azure.Management.Search { + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for ServicesOperations. @@ -47,7 +53,7 @@ public static partial class ServicesOperationsExtensions /// public static SearchService CreateOrUpdate(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServicesOperations)s).CreateOrUpdateAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -81,7 +87,7 @@ public static partial class ServicesOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -101,15 +107,15 @@ public static partial class ServicesOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation /// public static SearchService Get(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServicesOperations)s).GetAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -124,8 +130,8 @@ public static partial class ServicesOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -133,7 +139,7 @@ public static partial class ServicesOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -154,15 +160,15 @@ public static partial class ServicesOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation /// public static void Delete(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IServicesOperations)s).DeleteAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -178,8 +184,8 @@ public static partial class ServicesOperationsExtensions /// obtain this value from the Azure Resource Manager API or the portal. /// /// - /// The name of the Azure Search service associated with the specified - /// resource group. + /// The name of the Azure Search service associated with the specified resource + /// group. /// /// /// Additional parameters for the operation @@ -187,9 +193,9 @@ public static partial class ServicesOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, searchServiceName, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -206,9 +212,9 @@ public static partial class ServicesOperationsExtensions /// /// Additional parameters for the operation /// - public static System.Collections.Generic.IEnumerable ListByResourceGroup(this IServicesOperations operations, string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) + public static IEnumerable ListByResourceGroup(this IServicesOperations operations, string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServicesOperations)s).ListByResourceGroupAsync(resourceGroupName, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -228,7 +234,7 @@ public static partial class ServicesOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IServicesOperations operations, string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IServicesOperations operations, string resourceGroupName, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -246,17 +252,17 @@ public static partial class ServicesOperationsExtensions /// The operations group for this extension method. /// /// - /// The Search service name to validate. Search service names must only - /// contain lowercase letters, digits or dashes, cannot use dash as the first - /// two or last one characters, cannot contain consecutive dashes, and must - /// be between 2 and 60 characters in length. + /// The Search service name to validate. Search service names must only contain + /// lowercase letters, digits or dashes, cannot use dash as the first two or + /// last one characters, cannot contain consecutive dashes, and must be between + /// 2 and 60 characters in length. /// /// /// Additional parameters for the operation /// public static CheckNameAvailabilityOutput CheckNameAvailability(this IServicesOperations operations, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IServicesOperations)s).CheckNameAvailabilityAsync(name, searchManagementRequestOptions), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CheckNameAvailabilityAsync(name, searchManagementRequestOptions).GetAwaiter().GetResult(); } /// @@ -269,10 +275,10 @@ public static partial class ServicesOperationsExtensions /// The operations group for this extension method. /// /// - /// The Search service name to validate. Search service names must only - /// contain lowercase letters, digits or dashes, cannot use dash as the first - /// two or last one characters, cannot contain consecutive dashes, and must - /// be between 2 and 60 characters in length. + /// The Search service name to validate. Search service names must only contain + /// lowercase letters, digits or dashes, cannot use dash as the first two or + /// last one characters, cannot contain consecutive dashes, and must be between + /// 2 and 60 characters in length. /// /// /// Additional parameters for the operation @@ -280,7 +286,7 @@ public static partial class ServicesOperationsExtensions /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CheckNameAvailabilityAsync(this IServicesOperations operations, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CheckNameAvailabilityAsync(this IServicesOperations operations, string name, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(name, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) { @@ -288,5 +294,77 @@ public static partial class ServicesOperationsExtensions } } + /// + /// Creates or updates a Search service in the given resource group. If the + /// Search service already exists, all properties will be updated with the + /// given values. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service to create or update. Search service + /// names must only contain lowercase letters, digits or dashes, cannot use + /// dash as the first two or last one characters, cannot contain consecutive + /// dashes, and must be between 2 and 60 characters in length. Search service + /// names must be globally unique since they are part of the service URI + /// (https://<name>.search.windows.net). You cannot change the service + /// name after the service is created. + /// + /// + /// The definition of the Search service to create or update. + /// + /// + /// Additional parameters for the operation + /// + public static SearchService BeginCreateOrUpdate(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a Search service in the given resource group. If the + /// Search service already exists, all properties will be updated with the + /// given values. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service to create or update. Search service + /// names must only contain lowercase letters, digits or dashes, cannot use + /// dash as the first two or last one characters, cannot contain consecutive + /// dashes, and must be between 2 and 60 characters in length. Search service + /// names must be globally unique since they are part of the service URI + /// (https://<name>.search.windows.net). You cannot change the service + /// name after the service is created. + /// + /// + /// The definition of the Search service to create or update. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/src/SDKs/_metadata/search_resource-manager.txt b/src/SDKs/_metadata/search_resource-manager.txt new file mode 100644 index 0000000000000..9014ce7d683a7 --- /dev/null +++ b/src/SDKs/_metadata/search_resource-manager.txt @@ -0,0 +1,11 @@ +2017-12-13 05:31:07 UTC + +1) azure-rest-api-specs repository information +GitHub user: Azure +Branch: current +Commit: 6f19801e99f2962e77205a9d5d5f46a3386eb66f + +2) AutoRest information +Requested version: latest +Bootstrapper version: C:\Users\brjohnst\AppData\Roaming\npm `-- autorest@2.0.4215 +Latest installed version: From 9c812dbb1f7c7d112d12f9e493e06a7471ef0bf4 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Wed, 13 Dec 2017 11:37:33 -0800 Subject: [PATCH 03/10] [Azure Search] Updating session records for management SDK tests --- .../CanGetAdminKeys.json | 160 +- .../CanRegenerateAdminKeys.json | 206 +- .../CanCreateAndDeleteQueryKeys.json | 251 +- .../CanListQueryKeys.json | 156 +- .../DeleteQueryKeyIsIdempotent.json | 211 +- .../CanCreateAndDeleteService.json | 110 +- .../CanCreateAndGetService.json | 90 +- .../CanCreateBasicService.json | 86 +- .../CanCreateStandard2Service.json | 5294 +------- .../CanCreateStandard3HighDensityService.json | 5429 +------- .../CanCreateStandard3Service.json | 6290 +-------- .../CanCreateStandardService.json | 86 +- .../CanListServices.json | 116 +- .../CanScaleServiceUpAndDown.json | 11105 ++-------------- ...eckNameAvailabilityFailsOnInvalidName.json | 54 +- .../CheckNameAvailabilityFailsOnUsedName.json | 84 +- ...heckNameAvailabilitySucceedsOnNewName.json | 54 +- ...viceWithInvalidNameGivesUsefulMessage.json | 65 +- .../DeleteServiceIsIdempotent.json | 104 +- .../RequestIdIsReturnedInResponse.json | 52 +- 20 files changed, 3083 insertions(+), 26920 deletions(-) diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json index 9e1ecbbe91857..dae7b3e60a69e 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d727c8-1634-4ce6-9486-98cc252b3ede" + "0d53a07c-67a9-4303-9bde-40460b85e7cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:48 GMT" + "Wed, 13 Dec 2017 06:37:49 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1098" ], "x-ms-request-id": [ - "b2cdd4ed-242e-4fb8-a5d7-9769f0e6a727" + "e53ed8f0-b053-4cba-a852-c843d26958be" ], "x-ms-correlation-request-id": [ - "b2cdd4ed-242e-4fb8-a5d7-9769f0e6a727" + "e53ed8f0-b053-4cba-a852-c843d26958be" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090549Z:b2cdd4ed-242e-4fb8-a5d7-9769f0e6a727" + "CENTRALUS:20171213T063749Z:e53ed8f0-b053-4cba-a852-c843d26958be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1855?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxODU1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2659?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "6d15d3e1-aa4c-4767-b3ad-8b6d17dfe7e0" + "f80d20a9-5c56-4ca4-876c-6d5f8ee20864" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855\",\r\n \"name\": \"azsmnet1855\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659\",\r\n \"name\": \"azsmnet2659\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:50 GMT" + "Wed, 13 Dec 2017 06:37:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1097" ], "x-ms-request-id": [ - "83c4c5a3-bf33-4459-81ad-ab973f80e5d8" + "dc42170b-61dd-49a1-85f0-ec527abd4359" ], "x-ms-correlation-request-id": [ - "83c4c5a3-bf33-4459-81ad-ab973f80e5d8" + "dc42170b-61dd-49a1-85f0-ec527abd4359" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090551Z:83c4c5a3-bf33-4459-81ad-ab973f80e5d8" + "CENTRALUS:20171213T063749Z:dc42170b-61dd-49a1-85f0-ec527abd4359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855/providers/Microsoft.Search/searchServices/azs-2649?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,20 +132,20 @@ "67" ], "x-ms-client-request-id": [ - "ef2785c4-fa0f-4ee4-b960-0789636babc8" + "b37a63a9-ecf4-4236-bec1-89ca9fe460b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855/providers/Microsoft.Search/searchServices/azs-2649\",\r\n \"name\": \"azs-2649\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659\",\r\n \"name\": \"azs-659\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:52 GMT" + "Wed, 13 Dec 2017 06:37:53 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A05%3A53.3945582Z'\"" + "W/\"datetime'2017-12-13T06%3A37%3A53.8993439Z'\"" ], "x-ms-request-id": [ - "ef2785c4-fa0f-4ee4-b960-0789636babc8" + "b37a63a9-ecf4-4236-bec1-89ca9fe460b2" ], "request-id": [ - "ef2785c4-fa0f-4ee4-b960-0789636babc8" + "b37a63a9-ecf4-4236-bec1-89ca9fe460b2" ], "elapsed-time": [ - "640" + "3657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1096" ], "x-ms-correlation-request-id": [ - "c71b075c-8367-4e2a-9df5-06acf940609f" + "5158cf3f-008e-43fb-8fba-f9709279024d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090553Z:c71b075c-8367-4e2a-9df5-06acf940609f" + "CENTRALUS:20171213T063754Z:5158cf3f-008e-43fb-8fba-f9709279024d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855/providers/Microsoft.Search/searchServices/azs-2649/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce3d35fb-1893-4316-84da-8765b9764e7f" + "8fb3874c-57e1-4391-a986-f455d03a8bdc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"8E2353D6866CB1401A3320ED93550E96\",\r\n \"secondaryKey\": \"302FB7168BC308B7179DB1CED7030859\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"02FB44602C1661B1F590C41FEB390D8D\",\r\n \"secondaryKey\": \"C633D19AD767FB4B872A16F5E50B7A5C\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:53 GMT" + "Wed, 13 Dec 2017 06:37:55 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ce3d35fb-1893-4316-84da-8765b9764e7f" + "8fb3874c-57e1-4391-a986-f455d03a8bdc" ], "request-id": [ - "ce3d35fb-1893-4316-84da-8765b9764e7f" + "8fb3874c-57e1-4391-a986-f455d03a8bdc" ], "elapsed-time": [ - "311" + "402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,35 +249,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1095" ], "x-ms-correlation-request-id": [ - "8f13f4f8-87fd-4080-befc-005d3fdd89fd" + "30dd63f0-f035-4606-9911-c2574862a755" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090554Z:8f13f4f8-87fd-4080-befc-005d3fdd89fd" + "CENTRALUS:20171213T063755Z:30dd63f0-f035-4606-9911-c2574862a755" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855/providers/Microsoft.Search/searchServices/azs-2649/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "387dfb00-b380-4864-a82c-59b001fa8d26" + "8fea9c1d-2041-4acd-9c95-140390ff4ba1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"8E2353D6866CB1401A3320ED93550E96\",\"secondaryKey\":\"302FB7168BC308B7179DB1CED7030859\"}", + "ResponseBody": "{\"primaryKey\":\"02FB44602C1661B1F590C41FEB390D8D\",\"secondaryKey\":\"C633D19AD767FB4B872A16F5E50B7A5C\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:57 GMT" + "Wed, 13 Dec 2017 06:37:56 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "387dfb00-b380-4864-a82c-59b001fa8d26" + "8fea9c1d-2041-4acd-9c95-140390ff4ba1" ], "request-id": [ - "387dfb00-b380-4864-a82c-59b001fa8d26" + "8fea9c1d-2041-4acd-9c95-140390ff4ba1" ], "elapsed-time": [ - "3216" + "176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,35 +317,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1094" ], "x-ms-correlation-request-id": [ - "17b949cd-ff22-4e0d-aced-34928f78d97d" + "7f1ab57f-23f4-437d-8eff-9943d5d83d1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090558Z:17b949cd-ff22-4e0d-aced-34928f78d97d" + "CENTRALUS:20171213T063756Z:7f1ab57f-23f4-437d-8eff-9943d5d83d1f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855/providers/Microsoft.Search/searchServices/azs-2649/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTkvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c8a934c-6634-4d6f-9a1f-16236f2b78a2" + "fc014bd4-d5f6-43c8-bcb4-8173b76409b7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"D4F6296B82852EB67C89792EC6E0BD03\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"40C86099A1221BCDCD36EC245034B4E0\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:53 GMT" + "Wed, 13 Dec 2017 06:37:55 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0c8a934c-6634-4d6f-9a1f-16236f2b78a2" + "fc014bd4-d5f6-43c8-bcb4-8173b76409b7" ], "request-id": [ - "0c8a934c-6634-4d6f-9a1f-16236f2b78a2" + "fc014bd4-d5f6-43c8-bcb4-8173b76409b7" ], "elapsed-time": [ - "208" + "505" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,31 +385,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14908" ], "x-ms-correlation-request-id": [ - "2fee032f-813d-4a22-b7d0-b8bc6bd72233" + "ab6b2e3c-7fef-46a6-9ee7-b44a7a2bb827" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090554Z:2fee032f-813d-4a22-b7d0-b8bc6bd72233" + "CENTRALUS:20171213T063755Z:ab6b2e3c-7fef-46a6-9ee7-b44a7a2bb827" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1855/providers/Microsoft.Search/searchServices/azs-2649?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "070ba75a-289c-4a7e-822f-e5d8cd17d2a9" + "a19f494b-df56-424d-87bd-b684a01820bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -425,19 +425,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:59 GMT" + "Wed, 13 Dec 2017 06:38:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "070ba75a-289c-4a7e-822f-e5d8cd17d2a9" + "a19f494b-df56-424d-87bd-b684a01820bc" ], "request-id": [ - "070ba75a-289c-4a7e-822f-e5d8cd17d2a9" + "a19f494b-df56-424d-87bd-b684a01820bc" ], "elapsed-time": [ - "353" + "731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,13 +446,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1093" ], "x-ms-correlation-request-id": [ - "e519e1f4-f590-42e2-9ecf-45bcabccbf75" + "45f85fb9-f7d8-469f-9ef3-baf4393d1f44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090600Z:e519e1f4-f590-42e2-9ecf-45bcabccbf75" + "CENTRALUS:20171213T063801Z:45f85fb9-f7d8-469f-9ef3-baf4393d1f44" ] }, "StatusCode": 200 @@ -460,10 +460,10 @@ ], "Names": { "GenerateName": [ - "azsmnet1855" + "azsmnet2659" ], "GenerateServiceName": [ - "azs-2649" + "azs-659" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json index 2882112b8c6c3..24d2c54f994b4 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e747853a-63bc-45f8-b4cc-c552af3e7d41" + "6784cbaa-b7f6-4477-96db-4ab914f4fc55" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:17 GMT" + "Wed, 13 Dec 2017 06:37:31 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1107" ], "x-ms-request-id": [ - "65c41029-e1e3-4e63-83a8-e5ff03729eec" + "d9c07e16-8253-475e-aaec-f503f5eb8d9f" ], "x-ms-correlation-request-id": [ - "65c41029-e1e3-4e63-83a8-e5ff03729eec" + "d9c07e16-8253-475e-aaec-f503f5eb8d9f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040418Z:65c41029-e1e3-4e63-83a8-e5ff03729eec" + "CENTRALUS:20171213T063732Z:d9c07e16-8253-475e-aaec-f503f5eb8d9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3939?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzOTM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4465?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "723d2ced-694e-4abf-956c-b1770de3163f" + "e2808529-b383-40f2-9f56-351d8dd2ec69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939\",\r\n \"name\": \"azsmnet3939\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465\",\r\n \"name\": \"azsmnet4465\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:19 GMT" + "Wed, 13 Dec 2017 06:37:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1106" ], "x-ms-request-id": [ - "30cf3b34-dc92-41c7-aa8d-496b0cd12315" + "732ce023-ca0d-4fc8-b028-29ec96103089" ], "x-ms-correlation-request-id": [ - "30cf3b34-dc92-41c7-aa8d-496b0cd12315" + "732ce023-ca0d-4fc8-b028-29ec96103089" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040419Z:30cf3b34-dc92-41c7-aa8d-496b0cd12315" + "CENTRALUS:20171213T063732Z:732ce023-ca0d-4fc8-b028-29ec96103089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "67" ], "x-ms-client-request-id": [ - "03a74dd2-6532-4c53-8eca-0fc30df6c06f" + "e55dfcc3-eeff-4837-82b9-ee0bd7a1f4d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515\",\r\n \"name\": \"azs-1515\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772\",\r\n \"name\": \"azs-1772\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:22 GMT" + "Wed, 13 Dec 2017 06:37:34 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A04%3A22.9733298Z'\"" + "W/\"datetime'2017-12-13T06%3A37%3A34.440657Z'\"" ], "x-ms-request-id": [ - "03a74dd2-6532-4c53-8eca-0fc30df6c06f" + "e55dfcc3-eeff-4837-82b9-ee0bd7a1f4d2" ], "request-id": [ - "03a74dd2-6532-4c53-8eca-0fc30df6c06f" + "e55dfcc3-eeff-4837-82b9-ee0bd7a1f4d2" ], "elapsed-time": [ - "1529" + "1031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1105" ], "x-ms-correlation-request-id": [ - "9ac9bd7f-c15a-41ac-b311-ceffad17b42c" + "ca9d77f0-b685-4f3f-9918-a8075f6fdff5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040423Z:9ac9bd7f-c15a-41ac-b311-ceffad17b42c" + "CENTRALUS:20171213T063734Z:ca9d77f0-b685-4f3f-9918-a8075f6fdff5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f3a65e5-3554-4053-b89a-e19c4510468e" + "a5387ea8-2592-4101-bb69-4213dd212168" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"1F13F2CC7CFE01167E872C98E59F0ABE\",\r\n \"secondaryKey\": \"2DA40D9F2731B82D49626D468922BF68\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"DA2EBFDCD33A77F56E172772E6D627FE\",\r\n \"secondaryKey\": \"89C4D7B29492BB54A3B6626BA9F25372\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:24 GMT" + "Wed, 13 Dec 2017 06:37:35 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8f3a65e5-3554-4053-b89a-e19c4510468e" + "a5387ea8-2592-4101-bb69-4213dd212168" ], "request-id": [ - "8f3a65e5-3554-4053-b89a-e19c4510468e" + "a5387ea8-2592-4101-bb69-4213dd212168" ], "elapsed-time": [ - "142" + "521" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,35 +249,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1104" ], "x-ms-correlation-request-id": [ - "da8b160d-902b-4e4a-9e93-d42c07f0027d" + "f6f9943e-5b1d-4df0-8139-22dfb861da35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040424Z:da8b160d-902b-4e4a-9e93-d42c07f0027d" + "CENTRALUS:20171213T063735Z:f6f9943e-5b1d-4df0-8139-22dfb861da35" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b942daba-af3a-484f-a693-f3684a0c0f46" + "7a74ec07-e06d-49e9-b3c4-bf7834338468" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"1F13F2CC7CFE01167E872C98E59F0ABE\",\"secondaryKey\":\"2DA40D9F2731B82D49626D468922BF68\"}", + "ResponseBody": "{\"primaryKey\":\"DA2EBFDCD33A77F56E172772E6D627FE\",\"secondaryKey\":\"89C4D7B29492BB54A3B6626BA9F25372\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:27 GMT" + "Wed, 13 Dec 2017 06:37:39 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b942daba-af3a-484f-a693-f3684a0c0f46" + "7a74ec07-e06d-49e9-b3c4-bf7834338468" ], "request-id": [ - "b942daba-af3a-484f-a693-f3684a0c0f46" + "7a74ec07-e06d-49e9-b3c4-bf7834338468" ], "elapsed-time": [ - "140" + "1253" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,35 +317,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1103" ], "x-ms-correlation-request-id": [ - "7d0f8871-8a05-45b1-bb90-9c833d91289d" + "ea3b1f47-f3df-43bf-9aa8-95b06af0b16b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040427Z:7d0f8871-8a05-45b1-bb90-9c833d91289d" + "CENTRALUS:20171213T063740Z:ea3b1f47-f3df-43bf-9aa8-95b06af0b16b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6013ded9-f9d3-4108-9ccd-1fd4dd0de219" + "9c749011-cbaa-4a0f-aa21-f951b503aa95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BC255CFE7D13D696794D374E654EBE87\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"77BF4F2D1DC40458973622D121E963AA\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:24 GMT" + "Wed, 13 Dec 2017 06:37:38 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6013ded9-f9d3-4108-9ccd-1fd4dd0de219" + "9c749011-cbaa-4a0f-aa21-f951b503aa95" ], "request-id": [ - "6013ded9-f9d3-4108-9ccd-1fd4dd0de219" + "9c749011-cbaa-4a0f-aa21-f951b503aa95" ], "elapsed-time": [ - "137" + "2287" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,35 +385,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14909" ], "x-ms-correlation-request-id": [ - "4c704e45-4ce3-47d8-8d94-fb3615f4588d" + "6ec9fa12-5bed-4346-918b-c1e4b8890f48" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040425Z:4c704e45-4ce3-47d8-8d94-fb3615f4588d" + "CENTRALUS:20171213T063738Z:6ec9fa12-5bed-4346-918b-c1e4b8890f48" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515/regenerateAdminKey/primary?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1L3JlZ2VuZXJhdGVBZG1pbktleS9wcmltYXJ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/regenerateAdminKey/primary?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL3JlZ2VuZXJhdGVBZG1pbktleS9wcmltYXJ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f58e9472-dc2e-4137-bfa6-0eebf91340ed" + "5ba1449b-a7d4-4516-a223-97872a726d6c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"58861662D5C38FC9E3E1AE780BF5735F\",\"secondaryKey\":\"2DA40D9F2731B82D49626D468922BF68\"}", + "ResponseBody": "{\"primaryKey\":\"19769DE0C8FB7B2DBCD96B9955BCCB74\",\"secondaryKey\":\"89C4D7B29492BB54A3B6626BA9F25372\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -425,7 +425,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:27 GMT" + "Wed, 13 Dec 2017 06:37:42 GMT" ], "Pragma": [ "no-cache" @@ -438,13 +438,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f58e9472-dc2e-4137-bfa6-0eebf91340ed" + "5ba1449b-a7d4-4516-a223-97872a726d6c" ], "request-id": [ - "f58e9472-dc2e-4137-bfa6-0eebf91340ed" + "5ba1449b-a7d4-4516-a223-97872a726d6c" ], "elapsed-time": [ - "405" + "1870" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,35 +453,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1102" ], "x-ms-correlation-request-id": [ - "36f26913-9568-409a-a349-0dbb45b200c1" + "f890e947-da82-423a-94e1-e62f09b4e590" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040428Z:36f26913-9568-409a-a349-0dbb45b200c1" + "CENTRALUS:20171213T063742Z:f890e947-da82-423a-94e1-e62f09b4e590" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515/regenerateAdminKey/secondary?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1L3JlZ2VuZXJhdGVBZG1pbktleS9zZWNvbmRhcnk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/regenerateAdminKey/secondary?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL3JlZ2VuZXJhdGVBZG1pbktleS9zZWNvbmRhcnk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23aa3402-f8f2-4ff7-bf3d-6a2c8fd93144" + "f94e407c-325e-4aab-b3ff-b6bc82149742" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"58861662D5C38FC9E3E1AE780BF5735F\",\"secondaryKey\":\"44AE6F69260F322467F6D8FD26BA9CAF\"}", + "ResponseBody": "{\"primaryKey\":\"19769DE0C8FB7B2DBCD96B9955BCCB74\",\"secondaryKey\":\"80120455A19C1048B592A19616B2887A\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +493,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:28 GMT" + "Wed, 13 Dec 2017 06:37:43 GMT" ], "Pragma": [ "no-cache" @@ -506,13 +506,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "23aa3402-f8f2-4ff7-bf3d-6a2c8fd93144" + "f94e407c-325e-4aab-b3ff-b6bc82149742" ], "request-id": [ - "23aa3402-f8f2-4ff7-bf3d-6a2c8fd93144" + "f94e407c-325e-4aab-b3ff-b6bc82149742" ], "elapsed-time": [ - "371" + "1554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,31 +521,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1101" ], "x-ms-correlation-request-id": [ - "40253976-c7e7-4546-841c-c011fc41296f" + "46daadb6-a65d-4b1c-acf6-56d53b10a601" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040428Z:40253976-c7e7-4546-841c-c011fc41296f" + "CENTRALUS:20171213T063743Z:46daadb6-a65d-4b1c-acf6-56d53b10a601" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3939/providers/Microsoft.Search/searchServices/azs-1515?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzOTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNTE1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ced2a0c7-1cd0-458f-bfea-3c2980c5fcfc" + "4c8a5cdb-fe75-44fb-a7d1-6eb0f1fcfc08" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -561,19 +561,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:36 GMT" + "Wed, 13 Dec 2017 06:37:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ced2a0c7-1cd0-458f-bfea-3c2980c5fcfc" + "4c8a5cdb-fe75-44fb-a7d1-6eb0f1fcfc08" ], "request-id": [ - "ced2a0c7-1cd0-458f-bfea-3c2980c5fcfc" + "4c8a5cdb-fe75-44fb-a7d1-6eb0f1fcfc08" ], "elapsed-time": [ - "4251" + "733" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,13 +582,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1100" ], "x-ms-correlation-request-id": [ - "01aa6fc8-3994-4cc2-959c-90b9591b37e4" + "2bb28bde-cf3d-4e1c-9c90-789b3f80f58b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040436Z:01aa6fc8-3994-4cc2-959c-90b9591b37e4" + "CENTRALUS:20171213T063748Z:2bb28bde-cf3d-4e1c-9c90-789b3f80f58b" ] }, "StatusCode": 200 @@ -596,10 +596,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3939" + "azsmnet4465" ], "GenerateServiceName": [ - "azs-1515" + "azs-1772" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json index 869dab77d4efd..e36a43c637eff 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16a2a2d2-6195-4c2b-b2ad-b631b59af1ed" + "94960510-4599-4ae4-8884-e6865bbe82d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:45 GMT" + "Wed, 13 Dec 2017 05:55:53 GMT" ], "Pragma": [ "no-cache" @@ -44,13 +44,13 @@ "1193" ], "x-ms-request-id": [ - "dcd538e4-6a6f-4311-8410-36935bb16d77" + "2be3dd13-b7db-4893-8b4f-e9109305c21b" ], "x-ms-correlation-request-id": [ - "dcd538e4-6a6f-4311-8410-36935bb16d77" + "2be3dd13-b7db-4893-8b4f-e9109305c21b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053545Z:dcd538e4-6a6f-4311-8410-36935bb16d77" + "CENTRALUS:20171213T055553Z:2be3dd13-b7db-4893-8b4f-e9109305c21b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3739?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNzM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4913?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0OTEzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "a81aa4b5-227c-441d-810d-1e9a56323f4f" + "79af3ffe-56e2-41d7-8021-ed77f1578794" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739\",\r\n \"name\": \"azsmnet3739\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913\",\r\n \"name\": \"azsmnet4913\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:45 GMT" + "Wed, 13 Dec 2017 05:55:53 GMT" ], "Pragma": [ "no-cache" @@ -105,13 +105,13 @@ "1192" ], "x-ms-request-id": [ - "6abd9f01-b8ff-4c91-923d-226c6f0b6f5c" + "4450b363-9b52-4350-bb24-494b97941cfa" ], "x-ms-correlation-request-id": [ - "6abd9f01-b8ff-4c91-923d-226c6f0b6f5c" + "4450b363-9b52-4350-bb24-494b97941cfa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053546Z:6abd9f01-b8ff-4c91-923d-226c6f0b6f5c" + "CENTRALUS:20171213T055553Z:4450b363-9b52-4350-bb24-494b97941cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,20 +132,20 @@ "67" ], "x-ms-client-request-id": [ - "216eb907-bb9e-475b-bf59-b97bc45e5058" + "bac8e220-dc67-4b24-be66-d98e1737b928" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406\",\r\n \"name\": \"azs-3406\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608\",\r\n \"name\": \"azs-608\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:50 GMT" + "Wed, 13 Dec 2017 05:55:55 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A35%3A49.5107864Z'\"" + "W/\"datetime'2017-12-13T05%3A55%3A55.8761401Z'\"" ], "x-ms-request-id": [ - "216eb907-bb9e-475b-bf59-b97bc45e5058" + "bac8e220-dc67-4b24-be66-d98e1737b928" ], "request-id": [ - "216eb907-bb9e-475b-bf59-b97bc45e5058" + "bac8e220-dc67-4b24-be66-d98e1737b928" ], "elapsed-time": [ - "581" + "1471" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-correlation-request-id": [ - "12920b19-0bec-44d6-b0ab-83193c792326" + "1a6d806e-9494-4677-8060-6b45011ae360" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053550Z:12920b19-0bec-44d6-b0ab-83193c792326" + "CENTRALUS:20171213T055555Z:1a6d806e-9494-4677-8060-6b45011ae360" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3660c3c5-634d-4c57-94b0-0aa9e4023aa2" + "7ffb815f-007e-417d-bf30-ffdb543740de" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"9517C7C703F93A2B600C2D4A13EABD2D\",\r\n \"secondaryKey\": \"290ECFB902C19DCCCC3C860E1C78F169\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"E3B391C7FFCE201FBAA879D118424F28\",\r\n \"secondaryKey\": \"6326E481E758F499E9254CE084BBF597\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:56 GMT" + "Wed, 13 Dec 2017 05:55:56 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3660c3c5-634d-4c57-94b0-0aa9e4023aa2" + "7ffb815f-007e-417d-bf30-ffdb543740de" ], "request-id": [ - "3660c3c5-634d-4c57-94b0-0aa9e4023aa2" + "7ffb815f-007e-417d-bf30-ffdb543740de" ], "elapsed-time": [ - "391" + "151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,35 +249,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1190" ], "x-ms-correlation-request-id": [ - "30ce1b78-da13-4fb2-a294-6380a734dd56" + "e80e9636-981d-45d1-84b8-0f1d488ddf14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053557Z:30ce1b78-da13-4fb2-a294-6380a734dd56" + "CENTRALUS:20171213T055556Z:e80e9636-981d-45d1-84b8-0f1d488ddf14" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fddd217c-88ad-4e75-9ad8-004f4e622efb" + "6c5f04dc-7a67-4f20-adf6-bddc887536df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"E19573264AA8A31C19B4996E21435A12\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2AE8BA5ED03E4202DA395EE5C626B7E1\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:58 GMT" + "Wed, 13 Dec 2017 05:55:56 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fddd217c-88ad-4e75-9ad8-004f4e622efb" + "6c5f04dc-7a67-4f20-adf6-bddc887536df" ], "request-id": [ - "fddd217c-88ad-4e75-9ad8-004f4e622efb" + "6c5f04dc-7a67-4f20-adf6-bddc887536df" ], "elapsed-time": [ - "166" + "128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -320,32 +320,32 @@ "14997" ], "x-ms-correlation-request-id": [ - "888b02d3-aa92-48fa-80d6-62f822b9bc4a" + "6f9f31a7-73e1-45e3-9600-79196771af23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053558Z:888b02d3-aa92-48fa-80d6-62f822b9bc4a" + "CENTRALUS:20171213T055557Z:6f9f31a7-73e1-45e3-9600-79196771af23" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75e7eae5-fa94-487e-be0a-0bf647179613" + "6b239a3c-820a-4222-b73e-ba8ee83fdc21" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"E19573264AA8A31C19B4996E21435A12\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"2AE8BA5ED03E4202DA395EE5C626B7E1\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:36:00 GMT" + "Wed, 13 Dec 2017 05:55:57 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75e7eae5-fa94-487e-be0a-0bf647179613" + "6b239a3c-820a-4222-b73e-ba8ee83fdc21" ], "request-id": [ - "75e7eae5-fa94-487e-be0a-0bf647179613" + "6b239a3c-820a-4222-b73e-ba8ee83fdc21" ], "elapsed-time": [ - "119" + "147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,35 +385,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "010169dc-e0ae-4f6e-b8c3-5e93e20ed18e" + "d0169e1c-6839-447c-bc50-a6582a9f28c2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053600Z:010169dc-e0ae-4f6e-b8c3-5e93e20ed18e" + "CENTRALUS:20171213T055557Z:d0169e1c-6839-447c-bc50-a6582a9f28c2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adb18da5-4eb0-4104-9371-ac531c4588f4" + "6d6f53ea-9bfc-4be2-95ff-1eb0fd97388d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"E19573264AA8A31C19B4996E21435A12\"},{\"name\":\"my key\",\"key\":\"A217BA1B6D5281F93059A81A9A72BA6E\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"2AE8BA5ED03E4202DA395EE5C626B7E1\"},{\"name\":\"my key\",\"key\":\"81169AD7E18D08B9F687A16AD5E98A54\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -425,7 +425,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:36:01 GMT" + "Wed, 13 Dec 2017 05:55:57 GMT" ], "Pragma": [ "no-cache" @@ -438,13 +438,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "adb18da5-4eb0-4104-9371-ac531c4588f4" + "6d6f53ea-9bfc-4be2-95ff-1eb0fd97388d" ], "request-id": [ - "adb18da5-4eb0-4104-9371-ac531c4588f4" + "6d6f53ea-9bfc-4be2-95ff-1eb0fd97388d" ], "elapsed-time": [ - "189" + "156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,35 +453,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "1cff57a4-2c2e-4b02-b0c4-701f405319db" + "dcce6023-6d74-46b2-9e63-3b022d3c1e3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053601Z:1cff57a4-2c2e-4b02-b0c4-701f405319db" + "CENTRALUS:20171213T055558Z:dcce6023-6d74-46b2-9e63-3b022d3c1e3d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "942ccf19-255f-4ee8-97f6-e2188e6e1b8e" + "b53d9169-352e-45c0-822f-b41855030eae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"E19573264AA8A31C19B4996E21435A12\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"2AE8BA5ED03E4202DA395EE5C626B7E1\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +493,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:36:02 GMT" + "Wed, 13 Dec 2017 05:55:59 GMT" ], "Pragma": [ "no-cache" @@ -506,13 +506,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "942ccf19-255f-4ee8-97f6-e2188e6e1b8e" + "b53d9169-352e-45c0-822f-b41855030eae" ], "request-id": [ - "942ccf19-255f-4ee8-97f6-e2188e6e1b8e" + "b53d9169-352e-45c0-822f-b41855030eae" ], "elapsed-time": [ - "193" + "153" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,35 +521,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "c40263a0-3262-42c9-a1bb-82227755ce9d" + "8620b635-2162-4468-ac78-992104c82044" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053602Z:c40263a0-3262-42c9-a1bb-82227755ce9d" + "CENTRALUS:20171213T055559Z:8620b635-2162-4468-ac78-992104c82044" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/createQueryKey/my%20key?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2NyZWF0ZVF1ZXJ5S2V5L215JTIwa2V5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/createQueryKey/my%20key?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvY3JlYXRlUXVlcnlLZXkvbXklMjBrZXk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a71bbd8-9e5a-4be0-b55b-488e0782ad3a" + "c844877c-70d7-48c0-bbf0-5b22692d8f16" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"name\":\"my key\",\"key\":\"A217BA1B6D5281F93059A81A9A72BA6E\"}", + "ResponseBody": "{\"name\":\"my key\",\"key\":\"81169AD7E18D08B9F687A16AD5E98A54\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -561,7 +561,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:36:00 GMT" + "Wed, 13 Dec 2017 05:55:57 GMT" ], "Pragma": [ "no-cache" @@ -574,13 +574,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7a71bbd8-9e5a-4be0-b55b-488e0782ad3a" + "c844877c-70d7-48c0-bbf0-5b22692d8f16" ], "request-id": [ - "7a71bbd8-9e5a-4be0-b55b-488e0782ad3a" + "c844877c-70d7-48c0-bbf0-5b22692d8f16" ], "elapsed-time": [ - "189" + "234" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,39 +589,36 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1189" ], "x-ms-correlation-request-id": [ - "da103d40-054c-4b8c-b22c-3fcf177e38a5" + "621326a0-8e0f-4726-8724-4ce8e22e8eb4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053600Z:da103d40-054c-4b8c-b22c-3fcf177e38a5" + "CENTRALUS:20171213T055558Z:621326a0-8e0f-4726-8724-4ce8e22e8eb4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406/deleteQueryKey/A217BA1B6D5281F93059A81A9A72BA6E?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2L2RlbGV0ZVF1ZXJ5S2V5L0EyMTdCQTFCNkQ1MjgxRjkzMDU5QTgxQTlBNzJCQTZFP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/deleteQueryKey/81169AD7E18D08B9F687A16AD5E98A54?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvZGVsZXRlUXVlcnlLZXkvODExNjlBRDdFMThEMDhCOUY2ODdBMTZBRDVFOThBNTQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83b259fc-8a38-4fb0-829a-47d56aa4aad3" + "737fa60a-311c-4347-adf4-ea0db0713b0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], "Expires": [ "-1" ], @@ -629,19 +626,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:36:01 GMT" + "Wed, 13 Dec 2017 05:55:59 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "83b259fc-8a38-4fb0-829a-47d56aa4aad3" + "737fa60a-311c-4347-adf4-ea0db0713b0a" ], "request-id": [ - "83b259fc-8a38-4fb0-829a-47d56aa4aad3" + "737fa60a-311c-4347-adf4-ea0db0713b0a" ], "elapsed-time": [ - "165" + "220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,31 +647,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1188" ], "x-ms-correlation-request-id": [ - "d6aff334-d702-4a5a-9527-7ccc76ea23f3" + "0ecb5b49-a1b4-40bf-8a2e-963dfb99bbc0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053602Z:d6aff334-d702-4a5a-9527-7ccc76ea23f3" + "CENTRALUS:20171213T055559Z:0ecb5b49-a1b4-40bf-8a2e-963dfb99bbc0" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3739/providers/Microsoft.Search/searchServices/azs-3406?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNDA2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc70362f-eff3-484c-94b1-e7adddd194d1" + "35b6ee57-af13-4e8e-bd3b-ab4b930de5af" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -690,19 +687,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:36:06 GMT" + "Wed, 13 Dec 2017 05:56:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fc70362f-eff3-484c-94b1-e7adddd194d1" + "35b6ee57-af13-4e8e-bd3b-ab4b930de5af" ], "request-id": [ - "fc70362f-eff3-484c-94b1-e7adddd194d1" + "35b6ee57-af13-4e8e-bd3b-ab4b930de5af" ], "elapsed-time": [ - "284" + "1435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,13 +708,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1187" ], "x-ms-correlation-request-id": [ - "59c9e264-4f7d-482f-aeba-0cac7ea6c2b2" + "0be2e2c5-5438-4b29-8009-9ccee01e57ad" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053606Z:59c9e264-4f7d-482f-aeba-0cac7ea6c2b2" + "CENTRALUS:20171213T055601Z:0be2e2c5-5438-4b29-8009-9ccee01e57ad" ] }, "StatusCode": 200 @@ -725,10 +722,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3739" + "azsmnet4913" ], "GenerateServiceName": [ - "azs-3406" + "azs-608" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json index 5fee1081c197a..dc69d0cbaf330 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb43013a-f831-47fb-9c92-1c17ece3dc50" + "af839ae1-4dc3-413d-a321-a895b0815544" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:23 GMT" + "Wed, 13 Dec 2017 05:55:37 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "95270816-2187-4cec-aa24-bb57202075f5" + "143675c6-e076-46c3-b28d-40936490040b" ], "x-ms-correlation-request-id": [ - "95270816-2187-4cec-aa24-bb57202075f5" + "143675c6-e076-46c3-b28d-40936490040b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053524Z:95270816-2187-4cec-aa24-bb57202075f5" + "CENTRALUS:20171213T055538Z:143675c6-e076-46c3-b28d-40936490040b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4020?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MDIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6930?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2OTMwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "9e9aa723-fbbd-4bac-8c0c-466b4bc31173" + "156e8c5d-acad-47d5-8b71-370d835b6b6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020\",\r\n \"name\": \"azsmnet4020\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930\",\r\n \"name\": \"azsmnet6930\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:24 GMT" + "Wed, 13 Dec 2017 05:55:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "845567a3-9d33-42cc-9516-e6bff400db04" + "b569ea55-59e2-4cc6-b701-64ce21f498a3" ], "x-ms-correlation-request-id": [ - "845567a3-9d33-42cc-9516-e6bff400db04" + "b569ea55-59e2-4cc6-b701-64ce21f498a3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053524Z:845567a3-9d33-42cc-9516-e6bff400db04" + "CENTRALUS:20171213T055539Z:b569ea55-59e2-4cc6-b701-64ce21f498a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020/providers/Microsoft.Search/searchServices/azs-1775?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzc1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "67" ], "x-ms-client-request-id": [ - "a97056e7-8714-480c-8edd-826912f677e3" + "132e29ea-78cb-4549-b685-34ae1813e838" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020/providers/Microsoft.Search/searchServices/azs-1775\",\r\n \"name\": \"azs-1775\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895\",\r\n \"name\": \"azs-8895\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:29 GMT" + "Wed, 13 Dec 2017 05:55:47 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A35%3A29.0233736Z'\"" + "W/\"datetime'2017-12-13T05%3A55%3A47.1887976Z'\"" ], "x-ms-request-id": [ - "a97056e7-8714-480c-8edd-826912f677e3" + "132e29ea-78cb-4549-b685-34ae1813e838" ], "request-id": [ - "a97056e7-8714-480c-8edd-826912f677e3" + "132e29ea-78cb-4549-b685-34ae1813e838" ], "elapsed-time": [ - "665" + "6640" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "f8ed387a-a1e1-466f-baa7-8c7d6f779d6d" + "05f19831-bb51-4837-a974-fd221483b29b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053530Z:f8ed387a-a1e1-466f-baa7-8c7d6f779d6d" + "CENTRALUS:20171213T055547Z:05f19831-bb51-4837-a974-fd221483b29b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020/providers/Microsoft.Search/searchServices/azs-1775/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzc1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46e858ce-a139-4761-a1c6-fc792c4182e7" + "2a5a9dd3-faeb-427f-aed9-9ed67635a803" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"BED2A6C53617E1782429CEC95C239F48\",\r\n \"secondaryKey\": \"2E231C12B8F4868DD8FD5FB348D5F717\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"1D070B323639680F25EC57136B776A68\",\r\n \"secondaryKey\": \"7C1A904F3B00DC9BFED5C467FD0C1ED0\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:32 GMT" + "Wed, 13 Dec 2017 05:55:48 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "46e858ce-a139-4761-a1c6-fc792c4182e7" + "2a5a9dd3-faeb-427f-aed9-9ed67635a803" ], "request-id": [ - "46e858ce-a139-4761-a1c6-fc792c4182e7" + "2a5a9dd3-faeb-427f-aed9-9ed67635a803" ], "elapsed-time": [ - "168" + "167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,35 +249,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "687cd079-d76c-4434-a7d4-af59d9a0eeeb" + "5b34bd56-7256-4647-9673-6d49efd3bdcd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053532Z:687cd079-d76c-4434-a7d4-af59d9a0eeeb" + "CENTRALUS:20171213T055548Z:5b34bd56-7256-4647-9673-6d49efd3bdcd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020/providers/Microsoft.Search/searchServices/azs-1775/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzc1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "402bfc7e-8761-4f5c-a720-315c827b3a49" + "1b28acf6-c3ef-4d73-a345-5122ce76f0e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"BD2A1844CCAC73F341FE0A4F965CC24C\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"89B7636851C3EA02D19C03C0F09C8AA5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:32 GMT" + "Wed, 13 Dec 2017 05:55:48 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "402bfc7e-8761-4f5c-a720-315c827b3a49" + "1b28acf6-c3ef-4d73-a345-5122ce76f0e3" ], "request-id": [ - "402bfc7e-8761-4f5c-a720-315c827b3a49" + "1b28acf6-c3ef-4d73-a345-5122ce76f0e3" ], "elapsed-time": [ - "559" + "119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -320,32 +320,32 @@ "14999" ], "x-ms-correlation-request-id": [ - "edeb3e69-1605-41a9-8196-076035c80c55" + "aa34d0a1-0571-480a-9a35-b727a1d02fd9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053532Z:edeb3e69-1605-41a9-8196-076035c80c55" + "CENTRALUS:20171213T055549Z:aa34d0a1-0571-480a-9a35-b727a1d02fd9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020/providers/Microsoft.Search/searchServices/azs-1775/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzc1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804dec89-5d93-4880-b4e0-645b7a5e2dc5" + "56477d7b-1c0a-4e42-9030-ac38c2d9761c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"BD2A1844CCAC73F341FE0A4F965CC24C\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"89B7636851C3EA02D19C03C0F09C8AA5\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:36 GMT" + "Wed, 13 Dec 2017 05:55:49 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "804dec89-5d93-4880-b4e0-645b7a5e2dc5" + "56477d7b-1c0a-4e42-9030-ac38c2d9761c" ], "request-id": [ - "804dec89-5d93-4880-b4e0-645b7a5e2dc5" + "56477d7b-1c0a-4e42-9030-ac38c2d9761c" ], "elapsed-time": [ - "862" + "303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,31 +385,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "f7b6af5f-1df5-41a3-a3a0-f6821e535682" + "63928270-8108-4253-aaf4-782248f9646f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053536Z:f7b6af5f-1df5-41a3-a3a0-f6821e535682" + "CENTRALUS:20171213T055549Z:63928270-8108-4253-aaf4-782248f9646f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4020/providers/Microsoft.Search/searchServices/azs-1775?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0MDIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzc1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d3ba673-0bd6-45f0-9ad1-c198e0524fe7" + "f45678a6-f782-4a0a-b6f4-83d3a3b4dd9f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -425,19 +425,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:39 GMT" + "Wed, 13 Dec 2017 05:55:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d3ba673-0bd6-45f0-9ad1-c198e0524fe7" + "f45678a6-f782-4a0a-b6f4-83d3a3b4dd9f" ], "request-id": [ - "3d3ba673-0bd6-45f0-9ad1-c198e0524fe7" + "f45678a6-f782-4a0a-b6f4-83d3a3b4dd9f" ], "elapsed-time": [ - "454" + "1075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,13 +446,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "6a4def56-3bc7-44a0-b2da-73a68488c28e" + "29d68521-fe4e-4ace-8609-d332906fab42" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053540Z:6a4def56-3bc7-44a0-b2da-73a68488c28e" + "CENTRALUS:20171213T055552Z:29d68521-fe4e-4ace-8609-d332906fab42" ] }, "StatusCode": 200 @@ -460,10 +460,10 @@ ], "Names": { "GenerateName": [ - "azsmnet4020" + "azsmnet6930" ], "GenerateServiceName": [ - "azs-1775" + "azs-8895" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json index 5cbc7ba10f525..04302a4892bd6 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ab53845-d611-49db-a694-676f4e66a21a" + "dfbc9878-2a28-4449-8f45-7d6ad34021a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:40 GMT" + "Wed, 13 Dec 2017 05:56:02 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1185" ], "x-ms-request-id": [ - "727c0d9f-18a5-4408-85b1-bdd8b1145c09" + "147d11a0-0822-456b-98e8-3e847e39090d" ], "x-ms-correlation-request-id": [ - "727c0d9f-18a5-4408-85b1-bdd8b1145c09" + "147d11a0-0822-456b-98e8-3e847e39090d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090540Z:727c0d9f-18a5-4408-85b1-bdd8b1145c09" + "CENTRALUS:20171213T055602Z:147d11a0-0822-456b-98e8-3e847e39090d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet89?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet103?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,20 +71,20 @@ "29" ], "x-ms-client-request-id": [ - "da6893b2-e6c9-454b-a4e3-4af633dd5213" + "a55c12d3-417e-42cc-af73-0463f1b7d178" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89\",\r\n \"name\": \"azsmnet89\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103\",\r\n \"name\": \"azsmnet103\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "171" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:40 GMT" + "Wed, 13 Dec 2017 05:56:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1184" ], "x-ms-request-id": [ - "e421f630-8e49-4eac-a7a3-f0fb18b7c527" + "86b6d585-3915-4345-930b-9ea4895e180f" ], "x-ms-correlation-request-id": [ - "e421f630-8e49-4eac-a7a3-f0fb18b7c527" + "86b6d585-3915-4345-930b-9ea4895e180f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090540Z:e421f630-8e49-4eac-a7a3-f0fb18b7c527" + "CENTRALUS:20171213T055603Z:86b6d585-3915-4345-930b-9ea4895e180f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,20 +132,20 @@ "67" ], "x-ms-client-request-id": [ - "786c07d4-2697-4e8d-ae5c-0d63d93c4ebb" + "d005c8ca-8437-4de7-b6e8-e9653b3bc732" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773\",\r\n \"name\": \"azs-5773\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123\",\r\n \"name\": \"azs-9123\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:41 GMT" + "Wed, 13 Dec 2017 05:56:06 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A05%3A42.5040994Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A05.2000944Z'\"" ], "x-ms-request-id": [ - "786c07d4-2697-4e8d-ae5c-0d63d93c4ebb" + "d005c8ca-8437-4de7-b6e8-e9653b3bc732" ], "request-id": [ - "786c07d4-2697-4e8d-ae5c-0d63d93c4ebb" + "d005c8ca-8437-4de7-b6e8-e9653b3bc732" ], "elapsed-time": [ - "815" + "1710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1183" ], "x-ms-correlation-request-id": [ - "6cb0665a-8a19-4858-9c42-dc36ba04cae7" + "1bac0ef2-1191-453d-843d-5c27a80c02d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090542Z:6cb0665a-8a19-4858-9c42-dc36ba04cae7" + "CENTRALUS:20171213T055605Z:1bac0ef2-1191-453d-843d-5c27a80c02d6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3My9saXN0QWRtaW5LZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6ac42ab-d6f6-4a18-969f-21133a8bd461" + "36eabe6e-4256-42a5-84e1-05c9772e8024" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"6DFEF382F751891750E8BF369645CC14\",\r\n \"secondaryKey\": \"27AB0C7728B8A6F03258C6B7372F3B93\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"0008EB6FCC263B3EFAFEB45276153F1E\",\r\n \"secondaryKey\": \"21D66946D6E6B8BD1E7DBDF364A4D297\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:43 GMT" + "Wed, 13 Dec 2017 05:56:06 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b6ac42ab-d6f6-4a18-969f-21133a8bd461" + "36eabe6e-4256-42a5-84e1-05c9772e8024" ], "request-id": [ - "b6ac42ab-d6f6-4a18-969f-21133a8bd461" + "36eabe6e-4256-42a5-84e1-05c9772e8024" ], "elapsed-time": [ - "737" + "126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,35 +249,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1182" ], "x-ms-correlation-request-id": [ - "a706d133-0ea5-4b0e-aad2-eac906a72984" + "181a2e37-7cc1-43ad-92d9-c70b34546103" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090543Z:a706d133-0ea5-4b0e-aad2-eac906a72984" + "CENTRALUS:20171213T055606Z:181a2e37-7cc1-43ad-92d9-c70b34546103" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3My9saXN0UXVlcnlLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78b51862-aaa1-4657-8a4b-79b5a2fdea60" + "20a52f69-ba6e-41a2-b619-83ea600cbfb0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"EB3D18FBCE9AA1122C87449B301104D5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3CB8687842792F9D8B0CA51E3E179BFD\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:44 GMT" + "Wed, 13 Dec 2017 05:56:07 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "78b51862-aaa1-4657-8a4b-79b5a2fdea60" + "20a52f69-ba6e-41a2-b619-83ea600cbfb0" ], "request-id": [ - "78b51862-aaa1-4657-8a4b-79b5a2fdea60" + "20a52f69-ba6e-41a2-b619-83ea600cbfb0" ], "elapsed-time": [ - "183" + "116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,35 +317,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-correlation-request-id": [ - "cd89866c-916e-4884-ae7c-993409e958a4" + "e0907b8d-b418-43de-bcae-b1d3bcead4db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090544Z:cd89866c-916e-4884-ae7c-993409e958a4" + "CENTRALUS:20171213T055607Z:e0907b8d-b418-43de-bcae-b1d3bcead4db" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773/createQueryKey/my%20key?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3My9jcmVhdGVRdWVyeUtleS9teSUyMGtleT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/createQueryKey/my%20key?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvY3JlYXRlUXVlcnlLZXkvbXklMjBrZXk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "149c1ebb-d59f-48c4-bee9-26a466fc0710" + "c79569cf-c9f0-41b5-b708-2f9d2a814634" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"name\":\"my key\",\"key\":\"3C0C7B9F40EAE09C862C442CC718DD9E\"}", + "ResponseBody": "{\"name\":\"my key\",\"key\":\"79E697DF0631C5A48BC5BF3E68FC9B28\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:44 GMT" + "Wed, 13 Dec 2017 05:56:07 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "149c1ebb-d59f-48c4-bee9-26a466fc0710" + "c79569cf-c9f0-41b5-b708-2f9d2a814634" ], "request-id": [ - "149c1ebb-d59f-48c4-bee9-26a466fc0710" + "c79569cf-c9f0-41b5-b708-2f9d2a814634" ], "elapsed-time": [ - "193" + "163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,39 +385,36 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1181" ], "x-ms-correlation-request-id": [ - "250515ad-9ac5-418d-afcd-875ed5f2b5e3" + "9d4d10a5-8137-4525-8498-9cd624617b51" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090545Z:250515ad-9ac5-418d-afcd-875ed5f2b5e3" + "CENTRALUS:20171213T055607Z:9d4d10a5-8137-4525-8498-9cd624617b51" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773/deleteQueryKey/3C0C7B9F40EAE09C862C442CC718DD9E?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3My9kZWxldGVRdWVyeUtleS8zQzBDN0I5RjQwRUFFMDlDODYyQzQ0MkNDNzE4REQ5RT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/deleteQueryKey/79E697DF0631C5A48BC5BF3E68FC9B28?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvZGVsZXRlUXVlcnlLZXkvNzlFNjk3REYwNjMxQzVBNDhCQzVCRjNFNjhGQzlCMjg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b00cd5dc-61d7-445b-b1a0-cbfd648de39b" + "3c7f9f57-a32a-4d3c-a0eb-a4d65de8e60b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], "Expires": [ "-1" ], @@ -425,19 +422,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:44 GMT" + "Wed, 13 Dec 2017 05:56:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b00cd5dc-61d7-445b-b1a0-cbfd648de39b" + "3c7f9f57-a32a-4d3c-a0eb-a4d65de8e60b" ], "request-id": [ - "b00cd5dc-61d7-445b-b1a0-cbfd648de39b" + "3c7f9f57-a32a-4d3c-a0eb-a4d65de8e60b" ], "elapsed-time": [ - "234" + "235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,35 +443,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1180" ], "x-ms-correlation-request-id": [ - "a2294cc1-3e0a-478c-a886-795fd10b9c87" + "860067a1-c1a8-4770-b23a-2ca18ea04311" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090545Z:a2294cc1-3e0a-478c-a886-795fd10b9c87" + "CENTRALUS:20171213T055608Z:860067a1-c1a8-4770-b23a-2ca18ea04311" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773/deleteQueryKey/3C0C7B9F40EAE09C862C442CC718DD9E?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3My9kZWxldGVRdWVyeUtleS8zQzBDN0I5RjQwRUFFMDlDODYyQzQ0MkNDNzE4REQ5RT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/deleteQueryKey/79E697DF0631C5A48BC5BF3E68FC9B28?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvZGVsZXRlUXVlcnlLZXkvNzlFNjk3REYwNjMxQzVBNDhCQzVCRjNFNjhGQzlCMjg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96e957b7-ef6f-4a3b-b9c1-65842d8f4f11" + "129b3e81-6243-48b7-80b0-87d5f6be161b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"error\":{\"code\":\"Unknown\",\"message\":\"This API key does not exist for service 'azs-5773'. RequestId: 96e957b7-ef6f-4a3b-b9c1-65842d8f4f11\",\"target\":null,\"details\":null}}", + "ResponseBody": "{\"error\":{\"code\":\"Unknown\",\"message\":\"This API key does not exist for service 'azs-9123'. RequestId: 129b3e81-6243-48b7-80b0-87d5f6be161b\",\"target\":null,\"details\":null}}", "ResponseHeaders": { "Content-Length": [ "169" @@ -492,19 +489,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:46 GMT" + "Wed, 13 Dec 2017 05:56:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "96e957b7-ef6f-4a3b-b9c1-65842d8f4f11" + "129b3e81-6243-48b7-80b0-87d5f6be161b" ], "request-id": [ - "96e957b7-ef6f-4a3b-b9c1-65842d8f4f11" + "129b3e81-6243-48b7-80b0-87d5f6be161b" ], "elapsed-time": [ - "222" + "193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -513,31 +510,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1179" ], "x-ms-correlation-request-id": [ - "12ccceb4-bb46-451c-9a52-c3ef0c9b6bda" + "d79d987a-e156-4a02-849b-c41552691f05" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090546Z:12ccceb4-bb46-451c-9a52-c3ef0c9b6bda" + "CENTRALUS:20171213T055610Z:d79d987a-e156-4a02-849b-c41552691f05" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet89/providers/Microsoft.Search/searchServices/azs-5773?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNlYXJjaC9zZWFyY2hTZXJ2aWNlcy9henMtNTc3Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4b52f35-138a-472b-b31a-3830fe809ad7" + "63e488f4-effb-433f-be49-6bda6a8c27f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -553,19 +550,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:05:47 GMT" + "Wed, 13 Dec 2017 05:56:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e4b52f35-138a-472b-b31a-3830fe809ad7" + "63e488f4-effb-433f-be49-6bda6a8c27f6" ], "request-id": [ - "e4b52f35-138a-472b-b31a-3830fe809ad7" + "63e488f4-effb-433f-be49-6bda6a8c27f6" ], "elapsed-time": [ - "318" + "850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -574,13 +571,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1178" ], "x-ms-correlation-request-id": [ - "03a2bac6-38ed-4ccc-ba57-6a5daac617bf" + "10f25b8f-ddb9-42d7-9d79-33429e621c93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090547Z:03a2bac6-38ed-4ccc-ba57-6a5daac617bf" + "CENTRALUS:20171213T055612Z:10f25b8f-ddb9-42d7-9d79-33429e621c93" ] }, "StatusCode": 200 @@ -588,10 +585,10 @@ ], "Names": { "GenerateName": [ - "azsmnet89" + "azsmnet103" ], "GenerateServiceName": [ - "azs-5773" + "azs-9123" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json index b7e395b3a7994..47cbfc16a3d06 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5f1fae1-33d8-4aa7-af09-83c1a1be8a10" + "d0a6576f-62d4-4678-95f3-d42640e372a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:34:52 GMT" + "Wed, 13 Dec 2017 05:56:39 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1144" ], "x-ms-request-id": [ - "8ff47b62-127d-4114-9a84-846f11e64c12" + "75be369a-8ed6-4de7-af77-bc51cbfdd578" ], "x-ms-correlation-request-id": [ - "8ff47b62-127d-4114-9a84-846f11e64c12" + "75be369a-8ed6-4de7-af77-bc51cbfdd578" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053452Z:8ff47b62-127d-4114-9a84-846f11e64c12" + "CENTRALUS:20171213T055639Z:75be369a-8ed6-4de7-af77-bc51cbfdd578" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8979?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4OTc5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6050?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "f4f0ab60-4ad9-41c0-a831-2980f94906df" + "4f2f1543-9ea4-4c34-993e-3071321a07cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8979\",\r\n \"name\": \"azsmnet8979\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050\",\r\n \"name\": \"azsmnet6050\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:34:53 GMT" + "Wed, 13 Dec 2017 05:56:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1143" ], "x-ms-request-id": [ - "a5348794-a40c-4fdb-9817-7d6885f7c57a" + "eec80457-5761-491e-b8fc-9205649005f1" ], "x-ms-correlation-request-id": [ - "a5348794-a40c-4fdb-9817-7d6885f7c57a" + "eec80457-5761-491e-b8fc-9205649005f1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053453Z:a5348794-a40c-4fdb-9817-7d6885f7c57a" + "CENTRALUS:20171213T055639Z:eec80457-5761-491e-b8fc-9205649005f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8979/providers/Microsoft.Search/searchServices/azs-566?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices/azs-4042?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDQyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,20 +132,20 @@ "141" ], "x-ms-client-request-id": [ - "4501df49-09c3-477a-850b-578e855265ab" + "b68eccbc-9268-4a4c-8718-f98e4935e92e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8979/providers/Microsoft.Search/searchServices/azs-566\",\"name\":\"azs-566\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices/azs-4042\",\"name\":\"azs-4042\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:03 GMT" + "Wed, 13 Dec 2017 05:56:41 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A35%3A01.054871Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A41.7211677Z'\"" ], "x-ms-request-id": [ - "4501df49-09c3-477a-850b-578e855265ab" + "b68eccbc-9268-4a4c-8718-f98e4935e92e" ], "request-id": [ - "4501df49-09c3-477a-850b-578e855265ab" + "b68eccbc-9268-4a4c-8718-f98e4935e92e" ], "elapsed-time": [ - "2898" + "940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,31 +181,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1142" ], "x-ms-correlation-request-id": [ - "c64f9ac5-d171-4bc9-b8ce-912a09fcfceb" + "a799e44d-e0ea-41cf-87bf-afb176feb370" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053503Z:c64f9ac5-d171-4bc9-b8ce-912a09fcfceb" + "CENTRALUS:20171213T055641Z:a799e44d-e0ea-41cf-87bf-afb176feb370" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8979/providers/Microsoft.Search/searchServices/azs-566?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices/azs-4042?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDQyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6454c1df-dbf0-40ec-9fd4-5178c6a4752a" + "24c6ba2e-bf9a-4036-9a21-9e6953a37f67" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:04 GMT" + "Wed, 13 Dec 2017 05:56:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6454c1df-dbf0-40ec-9fd4-5178c6a4752a" + "24c6ba2e-bf9a-4036-9a21-9e6953a37f67" ], "request-id": [ - "6454c1df-dbf0-40ec-9fd4-5178c6a4752a" + "24c6ba2e-bf9a-4036-9a21-9e6953a37f67" ], "elapsed-time": [ - "476" + "842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,31 +242,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1141" ], "x-ms-correlation-request-id": [ - "55f99516-e3a7-4bfb-9422-01dc7a73b363" + "9f0efaea-5b10-43cc-8c77-95f95d1b46a6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053505Z:55f99516-e3a7-4bfb-9422-01dc7a73b363" + "CENTRALUS:20171213T055646Z:9f0efaea-5b10-43cc-8c77-95f95d1b46a6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8979/providers/Microsoft.Search/searchServices?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4OTc5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07df833e-f350-4110-8282-48d3c87c9cb1" + "ef1b587e-ff65-49a5-8cc7-72b52161d902" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -282,7 +282,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:06 GMT" + "Wed, 13 Dec 2017 05:56:46 GMT" ], "Pragma": [ "no-cache" @@ -295,13 +295,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "07df833e-f350-4110-8282-48d3c87c9cb1" + "ef1b587e-ff65-49a5-8cc7-72b52161d902" ], "request-id": [ - "07df833e-f350-4110-8282-48d3c87c9cb1" + "ef1b587e-ff65-49a5-8cc7-72b52161d902" ], "elapsed-time": [ - "35" + "41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -310,13 +310,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "d7f0c803-c976-4201-8484-6e956abf5a50" + "de779920-5226-41bf-adf0-0aa9c63021ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053506Z:d7f0c803-c976-4201-8484-6e956abf5a50" + "CENTRALUS:20171213T055646Z:de779920-5226-41bf-adf0-0aa9c63021ae" ] }, "StatusCode": 200 @@ -324,10 +324,10 @@ ], "Names": { "GenerateName": [ - "azsmnet8979" + "azsmnet6050" ], "GenerateServiceName": [ - "azs-566" + "azs-4042" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json index 62d0faf704cc4..07707e2d3a9c8 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b5da563-981b-422d-b7df-7004766a8020" + "00264ef5-d1fd-429c-8add-3fff910caf0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:12 GMT" + "Wed, 13 Dec 2017 06:37:17 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1119" ], "x-ms-request-id": [ - "b9fbe5d5-d862-4308-b700-0093a8cbad86" + "1d7dae9e-7628-4475-814e-bb37314ef2d4" ], "x-ms-correlation-request-id": [ - "b9fbe5d5-d862-4308-b700-0093a8cbad86" + "1d7dae9e-7628-4475-814e-bb37314ef2d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053513Z:b9fbe5d5-d862-4308-b700-0093a8cbad86" + "CENTRALUS:20171213T063717Z:1d7dae9e-7628-4475-814e-bb37314ef2d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9436?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8704?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "b4d60513-b6cf-42c0-ab79-f7ac7621c92c" + "4d7c86c9-e89f-482c-ac3b-524d3300ff2e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9436\",\r\n \"name\": \"azsmnet9436\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704\",\r\n \"name\": \"azsmnet8704\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:13 GMT" + "Wed, 13 Dec 2017 06:37:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1118" ], "x-ms-request-id": [ - "0974ea62-2f4b-4ffa-89c1-867d0461dacb" + "b35ed80f-3073-4159-b9a6-70b111817b3c" ], "x-ms-correlation-request-id": [ - "0974ea62-2f4b-4ffa-89c1-867d0461dacb" + "b35ed80f-3073-4159-b9a6-70b111817b3c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053514Z:0974ea62-2f4b-4ffa-89c1-867d0461dacb" + "CENTRALUS:20171213T063717Z:b35ed80f-3073-4159-b9a6-70b111817b3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9436/providers/Microsoft.Search/searchServices/azs-7470?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzI4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "141" ], "x-ms-client-request-id": [ - "4c8ddd8a-b002-41a8-ab01-26d0fafb80d2" + "911418ad-f135-48b5-9a3c-838db2f90ee4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9436/providers/Microsoft.Search/searchServices/azs-7470\",\"name\":\"azs-7470\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728\",\"name\":\"azs-9728\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:18 GMT" + "Wed, 13 Dec 2017 06:37:19 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A35%3A17.3252884Z'\"" + "W/\"datetime'2017-12-13T06%3A37%3A19.3241397Z'\"" ], "x-ms-request-id": [ - "4c8ddd8a-b002-41a8-ab01-26d0fafb80d2" + "911418ad-f135-48b5-9a3c-838db2f90ee4" ], "request-id": [ - "4c8ddd8a-b002-41a8-ab01-26d0fafb80d2" + "911418ad-f135-48b5-9a3c-838db2f90ee4" ], "elapsed-time": [ - "579" + "932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1117" ], "x-ms-correlation-request-id": [ - "40d5033a-e314-4184-8980-172ffdcebfa4" + "c196aca7-e0bf-4cb0-b97e-6408edd35cee" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053518Z:40d5033a-e314-4184-8980-172ffdcebfa4" + "CENTRALUS:20171213T063719Z:c196aca7-e0bf-4cb0-b97e-6408edd35cee" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9436/providers/Microsoft.Search/searchServices/azs-7470?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDcwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzI4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9429d2d-b732-4c49-ae8f-b0e4fd47e51a" + "6f00d7ef-affa-4218-b812-275d3ccdcd44" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9436/providers/Microsoft.Search/searchServices/azs-7470\",\"name\":\"azs-7470\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728\",\"name\":\"azs-9728\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:35:18 GMT" + "Wed, 13 Dec 2017 06:37:19 GMT" ], "Pragma": [ "no-cache" @@ -230,20 +230,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A35%3A17.3252884Z'\"" + "W/\"datetime'2017-12-13T06%3A37%3A19.3241397Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c9429d2d-b732-4c49-ae8f-b0e4fd47e51a" + "6f00d7ef-affa-4218-b812-275d3ccdcd44" ], "request-id": [ - "c9429d2d-b732-4c49-ae8f-b0e4fd47e51a" + "6f00d7ef-affa-4218-b812-275d3ccdcd44" ], "elapsed-time": [ - "73" + "116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,13 +252,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14911" ], "x-ms-correlation-request-id": [ - "b1830657-82a5-43fe-abb7-ee89f785b687" + "c23ba146-de8b-4d4a-832c-aeaed75e8163" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T053519Z:b1830657-82a5-43fe-abb7-ee89f785b687" + "CENTRALUS:20171213T063719Z:c23ba146-de8b-4d4a-832c-aeaed75e8163" ] }, "StatusCode": 200 @@ -266,10 +266,10 @@ ], "Names": { "GenerateName": [ - "azsmnet9436" + "azsmnet8704" ], "GenerateServiceName": [ - "azs-7470" + "azs-9728" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json index 597d91c275a44..422ab1d8fa8a0 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65c42443-d87d-4093-a2d4-e5cdc4393704" + "9e5dc933-b72d-4714-9c28-5fb893372c7d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:01 GMT" + "Wed, 13 Dec 2017 05:56:23 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1162" ], "x-ms-request-id": [ - "ec3df1a7-212d-4bc2-a7bf-cbd8c0158ec1" + "bbb78cc9-681d-4ebd-88ce-1d2304680e87" ], "x-ms-correlation-request-id": [ - "ec3df1a7-212d-4bc2-a7bf-cbd8c0158ec1" + "bbb78cc9-681d-4ebd-88ce-1d2304680e87" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040501Z:ec3df1a7-212d-4bc2-a7bf-cbd8c0158ec1" + "CENTRALUS:20171213T055623Z:bbb78cc9-681d-4ebd-88ce-1d2304680e87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9969?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5OTY5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3474?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNDc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "e1d3d85e-1b2c-4b08-ae8a-30b1ba052237" + "0bdec6da-a6a0-4973-8cb0-2c4f16f51fd9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9969\",\r\n \"name\": \"azsmnet9969\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474\",\r\n \"name\": \"azsmnet3474\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:02 GMT" + "Wed, 13 Dec 2017 05:56:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1161" ], "x-ms-request-id": [ - "d6912347-02c5-4cc2-acbc-4001c244fa27" + "bc210321-9cb3-4536-ba5b-c48f568ee499" ], "x-ms-correlation-request-id": [ - "d6912347-02c5-4cc2-acbc-4001c244fa27" + "bc210321-9cb3-4536-ba5b-c48f568ee499" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040502Z:d6912347-02c5-4cc2-acbc-4001c244fa27" + "CENTRALUS:20171213T055623Z:bc210321-9cb3-4536-ba5b-c48f568ee499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9969/providers/Microsoft.Search/searchServices/azs-1045?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474/providers/Microsoft.Search/searchServices/azs-8419?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "142" ], "x-ms-client-request-id": [ - "f26bea95-6c0b-4c99-bcff-45260dd20b00" + "5cf5beba-9bcc-42f0-a41a-306ffc37d98f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9969/providers/Microsoft.Search/searchServices/azs-1045\",\"name\":\"azs-1045\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474/providers/Microsoft.Search/searchServices/azs-8419\",\"name\":\"azs-8419\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Length": [ "386" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:07 GMT" + "Wed, 13 Dec 2017 05:56:26 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A06.9685814Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A26.7608008Z'\"" ], "x-ms-request-id": [ - "f26bea95-6c0b-4c99-bcff-45260dd20b00" + "5cf5beba-9bcc-42f0-a41a-306ffc37d98f" ], "request-id": [ - "f26bea95-6c0b-4c99-bcff-45260dd20b00" + "5cf5beba-9bcc-42f0-a41a-306ffc37d98f" ], "elapsed-time": [ - "1900" + "2037" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,31 +181,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1140" + "1160" ], "x-ms-correlation-request-id": [ - "af77804d-da36-4722-a09b-166728b62129" + "5df3c166-da3e-479c-9371-218230b20198" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040507Z:af77804d-da36-4722-a09b-166728b62129" + "CENTRALUS:20171213T055626Z:5df3c166-da3e-479c-9371-218230b20198" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9969/providers/Microsoft.Search/searchServices/azs-1045?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474/providers/Microsoft.Search/searchServices/azs-8419?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39c7a436-2cd6-44ac-8e8a-a456d8a85ee4" + "0bfb6858-44cd-45d6-938f-5014d88deb61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:09 GMT" + "Wed, 13 Dec 2017 05:56:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "39c7a436-2cd6-44ac-8e8a-a456d8a85ee4" + "0bfb6858-44cd-45d6-938f-5014d88deb61" ], "request-id": [ - "39c7a436-2cd6-44ac-8e8a-a456d8a85ee4" + "0bfb6858-44cd-45d6-938f-5014d88deb61" ], "elapsed-time": [ - "971" + "741" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,13 +242,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1159" ], "x-ms-correlation-request-id": [ - "8e0ffa19-cf84-405f-b568-83468ab839b7" + "b26da257-abfb-4325-83cf-9eefff98ed79" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040510Z:8e0ffa19-cf84-405f-b568-83468ab839b7" + "CENTRALUS:20171213T055628Z:b26da257-abfb-4325-83cf-9eefff98ed79" ] }, "StatusCode": 200 @@ -256,10 +256,10 @@ ], "Names": { "GenerateName": [ - "azsmnet9969" + "azsmnet3474" ], "GenerateServiceName": [ - "azs-1045" + "azs-8419" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json index efcc4c5f40b28..3b99c30191201 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d3809c6-e752-41d0-917f-09be9c3c4637" + "7c190ec8-b7b1-4653-9dc8-85b41eaa2761" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:06:01 GMT" + "Wed, 13 Dec 2017 19:16:57 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1189" ], "x-ms-request-id": [ - "023611c9-7717-41fd-bec1-34c7b1813faf" + "28f46a06-f157-4764-9c11-7478783d163b" ], "x-ms-correlation-request-id": [ - "023611c9-7717-41fd-bec1-34c7b1813faf" + "28f46a06-f157-4764-9c11-7478783d163b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090601Z:023611c9-7717-41fd-bec1-34c7b1813faf" + "CENTRALUS:20171213T191658Z:28f46a06-f157-4764-9c11-7478783d163b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5748?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1NzQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6270?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MjcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "362d37c3-5e40-4851-970e-dd5a55a1bcc4" + "6782e4e3-0dc1-4363-9db9-477360fde762" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748\",\r\n \"name\": \"azsmnet5748\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270\",\r\n \"name\": \"azsmnet6270\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:06:01 GMT" + "Wed, 13 Dec 2017 19:16:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1188" ], "x-ms-request-id": [ - "2e10299a-b4dc-456a-9b90-809ff7be4155" + "caff34c0-1ef1-48fb-8559-df3301082682" ], "x-ms-correlation-request-id": [ - "2e10299a-b4dc-456a-9b90-809ff7be4155" + "caff34c0-1ef1-48fb-8559-df3301082682" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090602Z:2e10299a-b4dc-456a-9b90-809ff7be4155" + "CENTRALUS:20171213T191658Z:caff34c0-1ef1-48fb-8559-df3301082682" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"standard2\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "146" ], "x-ms-client-request-id": [ - "aec3b373-28ba-47b3-b058-766fe6f0868a" + "db187578-51b9-4e4e-a3ec-2470c86114c7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Length": [ "398" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:06:21 GMT" + "Wed, 13 Dec 2017 19:17:25 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "x-ms-request-id": [ - "aec3b373-28ba-47b3-b058-766fe6f0868a" + "db187578-51b9-4e4e-a3ec-2470c86114c7" ], "request-id": [ - "aec3b373-28ba-47b3-b058-766fe6f0868a" + "db187578-51b9-4e4e-a3ec-2470c86114c7" ], "elapsed-time": [ - "19408" + "26272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,103 +184,26 @@ "1187" ], "x-ms-correlation-request-id": [ - "79b92d57-5d7f-4128-b639-251b1f17298b" + "617ad025-d4a0-4d95-b258-683d87eac351" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090622Z:79b92d57-5d7f-4128-b639-251b1f17298b" + "CENTRALUS:20171213T191725Z:617ad025-d4a0-4d95-b258-683d87eac351" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "20a19ecd-1d43-4d6a-8129-636384e33ffd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:06:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "20a19ecd-1d43-4d6a-8129-636384e33ffd" - ], - "request-id": [ - "20a19ecd-1d43-4d6a-8129-636384e33ffd" - ], - "elapsed-time": [ - "110" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "fcbd2fcc-dee0-42d3-8de4-e84172a9809a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090632Z:fcbd2fcc-dee0-42d3-8de4-e84172a9809a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c648c927-0b39-4951-91be-eb0ad8359232" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -292,7 +215,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:06:42 GMT" + "Wed, 13 Dec 2017 19:17:56 GMT" ], "Pragma": [ "no-cache" @@ -301,20 +224,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c648c927-0b39-4951-91be-eb0ad8359232" + "19400914-5502-49cd-a281-1b7d19ee9bf0" ], "request-id": [ - "c648c927-0b39-4951-91be-eb0ad8359232" + "19400914-5502-49cd-a281-1b7d19ee9bf0" ], "elapsed-time": [ - "81" + "80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -323,35 +246,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14943" ], "x-ms-correlation-request-id": [ - "da02fc14-c75c-4dec-9e59-0356ef76c922" + "835b11e9-9ebe-47a7-be7b-bb6929e993a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090642Z:da02fc14-c75c-4dec-9e59-0356ef76c922" + "CENTRALUS:20171213T191756Z:835b11e9-9ebe-47a7-be7b-bb6929e993a7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e0a01c04-b99a-434d-9102-79def296d641" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -363,7 +280,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:06:52 GMT" + "Wed, 13 Dec 2017 19:18:25 GMT" ], "Pragma": [ "no-cache" @@ -372,20 +289,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e0a01c04-b99a-434d-9102-79def296d641" + "1cb12edc-8944-4556-a37b-cbfe56ec3d0f" ], "request-id": [ - "e0a01c04-b99a-434d-9102-79def296d641" + "1cb12edc-8944-4556-a37b-cbfe56ec3d0f" ], "elapsed-time": [ - "293" + "111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,35 +311,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14942" ], "x-ms-correlation-request-id": [ - "cf0a6514-6da0-4a9f-a997-2bb64ed44cfc" + "76af737c-bc00-45f2-a0ed-02e5d0ce43e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090653Z:cf0a6514-6da0-4a9f-a997-2bb64ed44cfc" + "CENTRALUS:20171213T191826Z:76af737c-bc00-45f2-a0ed-02e5d0ce43e3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e88213f2-57e1-49a9-94ac-bf1d0c5beff8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -434,7 +345,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:07:02 GMT" + "Wed, 13 Dec 2017 19:18:56 GMT" ], "Pragma": [ "no-cache" @@ -443,20 +354,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e88213f2-57e1-49a9-94ac-bf1d0c5beff8" + "95aac82c-fb27-455c-b9a1-0506ea776947" ], "request-id": [ - "e88213f2-57e1-49a9-94ac-bf1d0c5beff8" + "95aac82c-fb27-455c-b9a1-0506ea776947" ], "elapsed-time": [ - "105" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,35 +376,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14941" ], "x-ms-correlation-request-id": [ - "c2b4d6c6-7964-4e84-a216-f8b909195d24" + "dc0909cd-9f94-453f-b72e-f7335c9bcd3f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090703Z:c2b4d6c6-7964-4e84-a216-f8b909195d24" + "CENTRALUS:20171213T191856Z:dc0909cd-9f94-453f-b72e-f7335c9bcd3f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d9f82991-03c0-4a9c-a654-06c7fe0a13c3" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -505,7 +410,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:07:13 GMT" + "Wed, 13 Dec 2017 19:19:25 GMT" ], "Pragma": [ "no-cache" @@ -514,20 +419,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d9f82991-03c0-4a9c-a654-06c7fe0a13c3" + "3349c841-f3d6-40d6-8a00-349e08b24181" ], "request-id": [ - "d9f82991-03c0-4a9c-a654-06c7fe0a13c3" + "3349c841-f3d6-40d6-8a00-349e08b24181" ], "elapsed-time": [ - "80" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -536,35 +441,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14940" ], "x-ms-correlation-request-id": [ - "86ca8103-9d06-4d19-9d2c-f1c21d55e23e" + "3c728cdb-9abf-4221-b937-5c8315d7381d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090713Z:86ca8103-9d06-4d19-9d2c-f1c21d55e23e" + "CENTRALUS:20171213T191926Z:3c728cdb-9abf-4221-b937-5c8315d7381d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "357f3b15-88d3-4ef1-9f1e-5dffee3c5f2b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -576,7 +475,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:07:23 GMT" + "Wed, 13 Dec 2017 19:19:56 GMT" ], "Pragma": [ "no-cache" @@ -585,20 +484,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "357f3b15-88d3-4ef1-9f1e-5dffee3c5f2b" + "a6cfe178-55bf-4c96-ab58-5a05395f0d14" ], "request-id": [ - "357f3b15-88d3-4ef1-9f1e-5dffee3c5f2b" + "a6cfe178-55bf-4c96-ab58-5a05395f0d14" ], "elapsed-time": [ - "87" + "109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,35 +506,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14939" ], "x-ms-correlation-request-id": [ - "a42a446b-3592-4609-9498-72388884995f" + "8e8716a9-08ee-4119-8497-b197a7371714" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090723Z:a42a446b-3592-4609-9498-72388884995f" + "CENTRALUS:20171213T191956Z:8e8716a9-08ee-4119-8497-b197a7371714" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5ba24a0c-dd5f-4786-bdbf-96eb6b34292a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -647,7 +540,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:07:33 GMT" + "Wed, 13 Dec 2017 19:20:26 GMT" ], "Pragma": [ "no-cache" @@ -656,20 +549,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5ba24a0c-dd5f-4786-bdbf-96eb6b34292a" + "c5c67844-cc45-40db-bf6b-8a7ee2112dd2" ], "request-id": [ - "5ba24a0c-dd5f-4786-bdbf-96eb6b34292a" + "c5c67844-cc45-40db-bf6b-8a7ee2112dd2" ], "elapsed-time": [ - "82" + "67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,35 +571,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14938" ], "x-ms-correlation-request-id": [ - "61d21057-eb4c-4af0-a557-aaaae37c3f5f" + "bcfe168c-3a03-44ff-903a-71c03c76383a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090733Z:61d21057-eb4c-4af0-a557-aaaae37c3f5f" + "CENTRALUS:20171213T192027Z:bcfe168c-3a03-44ff-903a-71c03c76383a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9b8591af-db70-4398-90fb-4302e1a2bbcc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -718,7 +605,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:07:43 GMT" + "Wed, 13 Dec 2017 19:20:56 GMT" ], "Pragma": [ "no-cache" @@ -727,20 +614,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9b8591af-db70-4398-90fb-4302e1a2bbcc" + "13e3a9d8-bede-4f30-a09d-b7992359acdd" ], "request-id": [ - "9b8591af-db70-4398-90fb-4302e1a2bbcc" + "13e3a9d8-bede-4f30-a09d-b7992359acdd" ], "elapsed-time": [ - "74" + "75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,35 +636,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14937" ], "x-ms-correlation-request-id": [ - "bbf874aa-7ba0-411e-b50e-fdc05e163f3c" + "0976531c-92fe-4b12-8339-332f1e317fb7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090744Z:bbf874aa-7ba0-411e-b50e-fdc05e163f3c" + "CENTRALUS:20171213T192057Z:0976531c-92fe-4b12-8339-332f1e317fb7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34069beb-d58a-4437-93de-787a9ffb96cb" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +670,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:07:54 GMT" + "Wed, 13 Dec 2017 19:21:26 GMT" ], "Pragma": [ "no-cache" @@ -798,20 +679,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "34069beb-d58a-4437-93de-787a9ffb96cb" + "2314b21b-a609-4dd5-b4ad-fe46f1340cf2" ], "request-id": [ - "34069beb-d58a-4437-93de-787a9ffb96cb" + "2314b21b-a609-4dd5-b4ad-fe46f1340cf2" ], "elapsed-time": [ - "193" + "73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,35 +701,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14936" ], "x-ms-correlation-request-id": [ - "8cc38546-fcc7-46f7-b81c-f8f638ed9142" + "3eb61417-de0e-4eac-9f6b-81bf97548fa1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090754Z:8cc38546-fcc7-46f7-b81c-f8f638ed9142" + "CENTRALUS:20171213T192127Z:3eb61417-de0e-4eac-9f6b-81bf97548fa1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ca6b481d-1ee7-44e0-a777-e57585b21c29" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -860,7 +735,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:08:04 GMT" + "Wed, 13 Dec 2017 19:21:57 GMT" ], "Pragma": [ "no-cache" @@ -869,20 +744,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ca6b481d-1ee7-44e0-a777-e57585b21c29" + "87971226-e820-4cfb-8c73-3c65abd4ce01" ], "request-id": [ - "ca6b481d-1ee7-44e0-a777-e57585b21c29" + "87971226-e820-4cfb-8c73-3c65abd4ce01" ], "elapsed-time": [ - "140" + "169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,35 +766,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14935" ], "x-ms-correlation-request-id": [ - "f21b14d1-d056-44a0-b235-50a0c5033435" + "e0f61535-4417-4c65-919e-9bfa16a4297c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090804Z:f21b14d1-d056-44a0-b235-50a0c5033435" + "CENTRALUS:20171213T192157Z:e0f61535-4417-4c65-919e-9bfa16a4297c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bd4810b5-e354-4a6b-b55f-6983ebc5cb98" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +800,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:08:13 GMT" + "Wed, 13 Dec 2017 19:22:28 GMT" ], "Pragma": [ "no-cache" @@ -940,20 +809,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "bd4810b5-e354-4a6b-b55f-6983ebc5cb98" + "8294aeb3-a123-4fa3-91bf-1f7511df52ce" ], "request-id": [ - "bd4810b5-e354-4a6b-b55f-6983ebc5cb98" + "8294aeb3-a123-4fa3-91bf-1f7511df52ce" ], "elapsed-time": [ - "82" + "115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -962,35 +831,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14934" ], "x-ms-correlation-request-id": [ - "6045c489-940c-4d7f-8854-9a97c8ca3b40" + "535059f8-df5f-4fd1-a542-b1daf73272dc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090814Z:6045c489-940c-4d7f-8854-9a97c8ca3b40" + "CENTRALUS:20171213T192228Z:535059f8-df5f-4fd1-a542-b1daf73272dc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f4b3d685-a5a0-4fba-98f3-7d2ec1336640" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1002,7 +865,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:08:24 GMT" + "Wed, 13 Dec 2017 19:22:58 GMT" ], "Pragma": [ "no-cache" @@ -1011,20 +874,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f4b3d685-a5a0-4fba-98f3-7d2ec1336640" + "9c96d23c-74c5-4e2e-993e-03557bb8628c" ], "request-id": [ - "f4b3d685-a5a0-4fba-98f3-7d2ec1336640" + "9c96d23c-74c5-4e2e-993e-03557bb8628c" ], "elapsed-time": [ - "73" + "76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,35 +896,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14933" ], "x-ms-correlation-request-id": [ - "3c01780a-4473-402a-a8fd-1f16c47a54e2" + "a9558a80-9e5e-4294-92d1-8c1f4d2fe82a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090825Z:3c01780a-4473-402a-a8fd-1f16c47a54e2" + "CENTRALUS:20171213T192258Z:a9558a80-9e5e-4294-92d1-8c1f4d2fe82a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9965eeef-2c46-4c04-803a-348a32ff50ff" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1073,7 +930,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:08:34 GMT" + "Wed, 13 Dec 2017 19:23:28 GMT" ], "Pragma": [ "no-cache" @@ -1082,20 +939,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9965eeef-2c46-4c04-803a-348a32ff50ff" + "0996d64a-3ce2-4230-a612-d7767e99aa79" ], "request-id": [ - "9965eeef-2c46-4c04-803a-348a32ff50ff" + "0996d64a-3ce2-4230-a612-d7767e99aa79" ], "elapsed-time": [ - "76" + "68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,35 +961,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14932" ], "x-ms-correlation-request-id": [ - "f8fdbf92-2824-44d3-a4ac-55e7b1b680aa" + "d1e7d6d6-0c46-43fa-b44c-8a6a5a6bbfc6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090835Z:f8fdbf92-2824-44d3-a4ac-55e7b1b680aa" + "CENTRALUS:20171213T192328Z:d1e7d6d6-0c46-43fa-b44c-8a6a5a6bbfc6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "46222ebf-6d0e-423a-ab0e-8cdb7ef0f2c8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1144,7 +995,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:08:44 GMT" + "Wed, 13 Dec 2017 19:24:02 GMT" ], "Pragma": [ "no-cache" @@ -1153,20 +1004,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "46222ebf-6d0e-423a-ab0e-8cdb7ef0f2c8" + "74a6c054-1a48-4385-a4e0-d0b644265fa5" ], "request-id": [ - "46222ebf-6d0e-423a-ab0e-8cdb7ef0f2c8" + "74a6c054-1a48-4385-a4e0-d0b644265fa5" ], "elapsed-time": [ - "76" + "70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1175,35 +1026,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14931" ], "x-ms-correlation-request-id": [ - "c9380c84-8786-42d4-82f2-62ce14ad552c" + "d5e43d7f-6472-4a12-bf62-a29df5fc8095" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090845Z:c9380c84-8786-42d4-82f2-62ce14ad552c" + "CENTRALUS:20171213T192402Z:d5e43d7f-6472-4a12-bf62-a29df5fc8095" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "98cf6666-b4c8-497f-b2ff-c97bacbbfbb2" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1215,7 +1060,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:08:54 GMT" + "Wed, 13 Dec 2017 19:24:32 GMT" ], "Pragma": [ "no-cache" @@ -1224,20 +1069,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "98cf6666-b4c8-497f-b2ff-c97bacbbfbb2" + "f105c74f-b118-4e3f-a092-e0d68a793d29" ], "request-id": [ - "98cf6666-b4c8-497f-b2ff-c97bacbbfbb2" + "f105c74f-b118-4e3f-a092-e0d68a793d29" ], "elapsed-time": [ - "190" + "75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1246,35 +1091,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14930" ], "x-ms-correlation-request-id": [ - "a2ebf1db-83f2-4746-920c-ce41e4d96113" + "ada327a6-843c-48cf-a484-f1283eb79888" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090855Z:a2ebf1db-83f2-4746-920c-ce41e4d96113" + "CENTRALUS:20171213T192432Z:ada327a6-843c-48cf-a484-f1283eb79888" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cada202c-4404-4368-b46d-773dd65cfa62" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1286,7 +1125,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:09:05 GMT" + "Wed, 13 Dec 2017 19:25:02 GMT" ], "Pragma": [ "no-cache" @@ -1295,20 +1134,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "cada202c-4404-4368-b46d-773dd65cfa62" + "dfdf31dd-c1cc-42c0-b15a-f197f813542b" ], "request-id": [ - "cada202c-4404-4368-b46d-773dd65cfa62" + "dfdf31dd-c1cc-42c0-b15a-f197f813542b" ], "elapsed-time": [ - "72" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,35 +1156,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14929" ], "x-ms-correlation-request-id": [ - "52252680-fdff-46e2-b431-e0d3fd1b6561" + "f5c258ba-ecfc-41d2-a22a-c83171a1c182" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090905Z:52252680-fdff-46e2-b431-e0d3fd1b6561" + "CENTRALUS:20171213T192502Z:f5c258ba-ecfc-41d2-a22a-c83171a1c182" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6db47509-18c7-474a-81c5-5be4563eb567" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1357,7 +1190,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:09:15 GMT" + "Wed, 13 Dec 2017 19:25:32 GMT" ], "Pragma": [ "no-cache" @@ -1366,20 +1199,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6db47509-18c7-474a-81c5-5be4563eb567" + "5c710c2e-0198-4474-9949-aa5f683a4d4e" ], "request-id": [ - "6db47509-18c7-474a-81c5-5be4563eb567" + "5c710c2e-0198-4474-9949-aa5f683a4d4e" ], "elapsed-time": [ - "87" + "64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,35 +1221,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14928" ], "x-ms-correlation-request-id": [ - "9d75bff6-e360-43e3-be3a-ea9d73866be3" + "dc073480-3454-4bb8-8153-f3ea2918292c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090916Z:9d75bff6-e360-43e3-be3a-ea9d73866be3" + "CENTRALUS:20171213T192533Z:dc073480-3454-4bb8-8153-f3ea2918292c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "991474ba-478e-4003-a49c-e54892ade2f2" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1428,7 +1255,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:09:26 GMT" + "Wed, 13 Dec 2017 19:26:03 GMT" ], "Pragma": [ "no-cache" @@ -1437,20 +1264,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "991474ba-478e-4003-a49c-e54892ade2f2" + "f821898e-827d-434d-b024-2a3c9acd73f9" ], "request-id": [ - "991474ba-478e-4003-a49c-e54892ade2f2" + "f821898e-827d-434d-b024-2a3c9acd73f9" ], "elapsed-time": [ - "69" + "457" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1459,35 +1286,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14927" ], "x-ms-correlation-request-id": [ - "34c30ec9-0786-4dd8-b53a-898ee9478956" + "4968dfa1-197e-44f9-af11-086c397cd494" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090926Z:34c30ec9-0786-4dd8-b53a-898ee9478956" + "CENTRALUS:20171213T192603Z:4968dfa1-197e-44f9-af11-086c397cd494" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6cd95e10-4be3-49e8-ad27-4087c773b620" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1499,7 +1320,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:09:36 GMT" + "Wed, 13 Dec 2017 19:26:33 GMT" ], "Pragma": [ "no-cache" @@ -1508,20 +1329,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6cd95e10-4be3-49e8-ad27-4087c773b620" + "06b8082d-55f4-4835-8727-ac9e2367f159" ], "request-id": [ - "6cd95e10-4be3-49e8-ad27-4087c773b620" + "06b8082d-55f4-4835-8727-ac9e2367f159" ], "elapsed-time": [ - "289" + "64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,35 +1351,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14926" ], "x-ms-correlation-request-id": [ - "8ad86186-3c37-44d2-8822-408058b31385" + "bdd853d8-9a70-4590-8967-d737a0ffb03e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090936Z:8ad86186-3c37-44d2-8822-408058b31385" + "CENTRALUS:20171213T192633Z:bdd853d8-9a70-4590-8967-d737a0ffb03e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "aa7573d4-478e-4079-9e77-0334d3897a9f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1570,7 +1385,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:09:46 GMT" + "Wed, 13 Dec 2017 19:27:03 GMT" ], "Pragma": [ "no-cache" @@ -1579,20 +1394,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "aa7573d4-478e-4079-9e77-0334d3897a9f" + "6838be72-026e-43ae-a7c6-45d431258541" ], "request-id": [ - "aa7573d4-478e-4079-9e77-0334d3897a9f" + "6838be72-026e-43ae-a7c6-45d431258541" ], "elapsed-time": [ - "72" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1601,35 +1416,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14925" ], "x-ms-correlation-request-id": [ - "25630543-6144-45ff-99fd-9478fa778ff1" + "4977a081-89b0-418f-9355-e59eff00f0a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090946Z:25630543-6144-45ff-99fd-9478fa778ff1" + "CENTRALUS:20171213T192704Z:4977a081-89b0-418f-9355-e59eff00f0a7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4ccf2034-bfac-4a24-83a0-623162560371" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1641,7 +1450,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:09:56 GMT" + "Wed, 13 Dec 2017 19:27:33 GMT" ], "Pragma": [ "no-cache" @@ -1650,20 +1459,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4ccf2034-bfac-4a24-83a0-623162560371" + "7c955f67-a0b4-4f6e-a318-0a8900378ca7" ], "request-id": [ - "4ccf2034-bfac-4a24-83a0-623162560371" + "7c955f67-a0b4-4f6e-a318-0a8900378ca7" ], "elapsed-time": [ - "144" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1672,35 +1481,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14924" ], "x-ms-correlation-request-id": [ - "40aa6ab4-8054-4614-9a6a-fc321ff2837f" + "1c2656dd-1227-40a3-b638-fe46b53dc270" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T090957Z:40aa6ab4-8054-4614-9a6a-fc321ff2837f" + "CENTRALUS:20171213T192734Z:1c2656dd-1227-40a3-b638-fe46b53dc270" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5bc160a8-d5f2-46c6-9bb8-e706fefdbedd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1712,7 +1515,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:10:06 GMT" + "Wed, 13 Dec 2017 19:28:03 GMT" ], "Pragma": [ "no-cache" @@ -1721,20 +1524,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5bc160a8-d5f2-46c6-9bb8-e706fefdbedd" + "85d3c173-ba73-43f6-bc31-8cf3247a57ba" ], "request-id": [ - "5bc160a8-d5f2-46c6-9bb8-e706fefdbedd" + "85d3c173-ba73-43f6-bc31-8cf3247a57ba" ], "elapsed-time": [ - "77" + "101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,35 +1546,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14923" ], "x-ms-correlation-request-id": [ - "7d694c7d-9304-4282-a94d-be88f7111004" + "be530ecc-f292-412c-9f2b-f743dc654138" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091007Z:7d694c7d-9304-4282-a94d-be88f7111004" + "CENTRALUS:20171213T192804Z:be530ecc-f292-412c-9f2b-f743dc654138" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3ae270a9-fd53-45da-843a-7e95f2d3fd2a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1783,7 +1580,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:10:16 GMT" + "Wed, 13 Dec 2017 19:28:33 GMT" ], "Pragma": [ "no-cache" @@ -1792,20 +1589,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3ae270a9-fd53-45da-843a-7e95f2d3fd2a" + "376c8176-8967-44e5-ae54-c229a3fb38cc" ], "request-id": [ - "3ae270a9-fd53-45da-843a-7e95f2d3fd2a" + "376c8176-8967-44e5-ae54-c229a3fb38cc" ], "elapsed-time": [ - "82" + "74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,35 +1611,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14922" ], "x-ms-correlation-request-id": [ - "d287aeb4-e206-46e6-8329-2b34d5c4da0f" + "2348a7d6-cfaf-4486-90dd-d638282e50ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091017Z:d287aeb4-e206-46e6-8329-2b34d5c4da0f" + "CENTRALUS:20171213T192834Z:2348a7d6-cfaf-4486-90dd-d638282e50ce" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "03b7074e-b0d9-4076-b423-1e4af6ef2216" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1854,7 +1645,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:10:27 GMT" + "Wed, 13 Dec 2017 19:29:04 GMT" ], "Pragma": [ "no-cache" @@ -1863,20 +1654,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "03b7074e-b0d9-4076-b423-1e4af6ef2216" + "7581dfb4-3154-422d-b69a-4afad2e6554b" ], "request-id": [ - "03b7074e-b0d9-4076-b423-1e4af6ef2216" + "7581dfb4-3154-422d-b69a-4afad2e6554b" ], "elapsed-time": [ - "92" + "74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,35 +1676,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14921" ], "x-ms-correlation-request-id": [ - "777d1532-0220-46dc-b2f7-21b8122279e0" + "3427d346-3bc5-4ced-8198-b0b34274ec34" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091027Z:777d1532-0220-46dc-b2f7-21b8122279e0" + "CENTRALUS:20171213T192904Z:3427d346-3bc5-4ced-8198-b0b34274ec34" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7d1fc28e-ffdc-4cd1-9e03-5ac9cff82d86" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1925,7 +1710,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:10:37 GMT" + "Wed, 13 Dec 2017 19:29:34 GMT" ], "Pragma": [ "no-cache" @@ -1934,20 +1719,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7d1fc28e-ffdc-4cd1-9e03-5ac9cff82d86" + "ced28b26-9ddd-4fcc-a5dd-f0560ea959bc" ], "request-id": [ - "7d1fc28e-ffdc-4cd1-9e03-5ac9cff82d86" + "ced28b26-9ddd-4fcc-a5dd-f0560ea959bc" ], "elapsed-time": [ - "75" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,35 +1741,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14920" ], "x-ms-correlation-request-id": [ - "4c324b74-92f6-42e1-bdd7-1d6ac6d146db" + "b7160dd6-690e-4d61-8bef-1bd8ab3a3513" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091037Z:4c324b74-92f6-42e1-bdd7-1d6ac6d146db" + "CENTRALUS:20171213T192935Z:b7160dd6-690e-4d61-8bef-1bd8ab3a3513" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bc2a1d60-d530-43e9-b738-67f0fd696e5a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1996,7 +1775,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:10:47 GMT" + "Wed, 13 Dec 2017 19:30:04 GMT" ], "Pragma": [ "no-cache" @@ -2005,20 +1784,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "bc2a1d60-d530-43e9-b738-67f0fd696e5a" + "3d64ebbc-e898-4c9c-a35b-4546b5092ee4" ], "request-id": [ - "bc2a1d60-d530-43e9-b738-67f0fd696e5a" + "3d64ebbc-e898-4c9c-a35b-4546b5092ee4" ], "elapsed-time": [ - "72" + "188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2027,35 +1806,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14919" ], "x-ms-correlation-request-id": [ - "5e1f31db-3084-4a38-944c-81f1c34a9a0e" + "33392511-6225-46a2-b106-56b932f3a6b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091048Z:5e1f31db-3084-4a38-944c-81f1c34a9a0e" + "CENTRALUS:20171213T193005Z:33392511-6225-46a2-b106-56b932f3a6b6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2c6b859e-c9fc-4503-88db-1c3c71d9042c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2067,7 +1840,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:10:57 GMT" + "Wed, 13 Dec 2017 19:30:35 GMT" ], "Pragma": [ "no-cache" @@ -2076,20 +1849,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2c6b859e-c9fc-4503-88db-1c3c71d9042c" + "832e3030-d78f-46a0-8cc1-ce6f265725b5" ], "request-id": [ - "2c6b859e-c9fc-4503-88db-1c3c71d9042c" + "832e3030-d78f-46a0-8cc1-ce6f265725b5" ], "elapsed-time": [ - "173" + "74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2098,35 +1871,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14918" ], "x-ms-correlation-request-id": [ - "f97e7cd3-1f17-4d1c-8f32-95f3c7f9c54c" + "a3213676-9d94-4afb-a49d-d1a0ad745ebb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091058Z:f97e7cd3-1f17-4d1c-8f32-95f3c7f9c54c" + "CENTRALUS:20171213T193035Z:a3213676-9d94-4afb-a49d-d1a0ad745ebb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2e60d1b8-c5c3-4458-a219-c8551ff2ed89" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2138,7 +1905,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:11:08 GMT" + "Wed, 13 Dec 2017 19:31:04 GMT" ], "Pragma": [ "no-cache" @@ -2147,20 +1914,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" + "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2e60d1b8-c5c3-4458-a219-c8551ff2ed89" + "d71e8a1e-360b-4cee-8678-eac0688c5f57" ], "request-id": [ - "2e60d1b8-c5c3-4458-a219-c8551ff2ed89" + "d71e8a1e-360b-4cee-8678-eac0688c5f57" ], "elapsed-time": [ - "73" + "133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,4362 +1936,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "18ef7234-340a-4be1-a6b6-76e4acf8d525" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091108Z:18ef7234-340a-4be1-a6b6-76e4acf8d525" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a46c95d8-d48d-4477-a4e0-60187262fff6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:11:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a46c95d8-d48d-4477-a4e0-60187262fff6" - ], - "request-id": [ - "a46c95d8-d48d-4477-a4e0-60187262fff6" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "ccfaa9eb-5048-49cb-8ed3-b8b94b478546" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091118Z:ccfaa9eb-5048-49cb-8ed3-b8b94b478546" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1f82c348-34a4-4fc3-b616-f46a3ffd3b39" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:11:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1f82c348-34a4-4fc3-b616-f46a3ffd3b39" - ], - "request-id": [ - "1f82c348-34a4-4fc3-b616-f46a3ffd3b39" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "acb73989-425c-4d27-adfb-8404432e90b1" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091128Z:acb73989-425c-4d27-adfb-8404432e90b1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "403e7c7f-7071-40b1-86f6-a7b2b5fbd45e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:11:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "403e7c7f-7071-40b1-86f6-a7b2b5fbd45e" - ], - "request-id": [ - "403e7c7f-7071-40b1-86f6-a7b2b5fbd45e" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "34454b9c-2075-40d0-90c0-23b0e3a1ba3d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091139Z:34454b9c-2075-40d0-90c0-23b0e3a1ba3d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6787dca5-c6da-437c-bf4f-5aaa39a1f1c9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:11:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6787dca5-c6da-437c-bf4f-5aaa39a1f1c9" - ], - "request-id": [ - "6787dca5-c6da-437c-bf4f-5aaa39a1f1c9" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "e6594e27-30f7-4afb-b879-f178d69718b5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091149Z:e6594e27-30f7-4afb-b879-f178d69718b5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d4b5f91-c34d-4321-88b9-7e9cc0bf08ea" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:11:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7d4b5f91-c34d-4321-88b9-7e9cc0bf08ea" - ], - "request-id": [ - "7d4b5f91-c34d-4321-88b9-7e9cc0bf08ea" - ], - "elapsed-time": [ - "127" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "be0f3f00-24c7-4a35-a5b0-869e69259e87" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091159Z:be0f3f00-24c7-4a35-a5b0-869e69259e87" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "160b1a8c-b71f-4e46-9c42-7ceff43bf598" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:12:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "160b1a8c-b71f-4e46-9c42-7ceff43bf598" - ], - "request-id": [ - "160b1a8c-b71f-4e46-9c42-7ceff43bf598" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "2750ca23-37ec-4e45-8077-6f7ba79d10e6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091209Z:2750ca23-37ec-4e45-8077-6f7ba79d10e6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8e7181b1-d4f6-472b-9740-03ea711d202f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:12:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8e7181b1-d4f6-472b-9740-03ea711d202f" - ], - "request-id": [ - "8e7181b1-d4f6-472b-9740-03ea711d202f" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "e95125d0-0982-4d30-851e-b74163ae673d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091219Z:e95125d0-0982-4d30-851e-b74163ae673d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a1f2322-ded3-4055-9aec-0b517a1a6d23" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:12:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6a1f2322-ded3-4055-9aec-0b517a1a6d23" - ], - "request-id": [ - "6a1f2322-ded3-4055-9aec-0b517a1a6d23" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "41533a69-72d5-4f1e-8fe4-970256b2c25c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091230Z:41533a69-72d5-4f1e-8fe4-970256b2c25c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "47567a2b-29c9-4f2d-a303-f2ddeadd5e4c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:12:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "47567a2b-29c9-4f2d-a303-f2ddeadd5e4c" - ], - "request-id": [ - "47567a2b-29c9-4f2d-a303-f2ddeadd5e4c" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "8561b31f-9b6f-4e45-a37f-377581f0bf66" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091240Z:8561b31f-9b6f-4e45-a37f-377581f0bf66" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ce0afd5-3144-4dc4-b02b-8dc1c7466e39" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:12:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2ce0afd5-3144-4dc4-b02b-8dc1c7466e39" - ], - "request-id": [ - "2ce0afd5-3144-4dc4-b02b-8dc1c7466e39" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "d338d279-ec8a-42f2-b9e7-6691ad9799a2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091250Z:d338d279-ec8a-42f2-b9e7-6691ad9799a2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3110312f-9fee-40e9-84a4-ded182eb1ec8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:13:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3110312f-9fee-40e9-84a4-ded182eb1ec8" - ], - "request-id": [ - "3110312f-9fee-40e9-84a4-ded182eb1ec8" - ], - "elapsed-time": [ - "82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "f25b58ea-fd98-4c9f-b668-703b6930786b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091300Z:f25b58ea-fd98-4c9f-b668-703b6930786b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f1e40e6f-2498-4db2-af94-8ec9d0b0c074" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:13:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f1e40e6f-2498-4db2-af94-8ec9d0b0c074" - ], - "request-id": [ - "f1e40e6f-2498-4db2-af94-8ec9d0b0c074" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "f3bd1105-1003-49e8-9492-c3990c9f1624" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091310Z:f3bd1105-1003-49e8-9492-c3990c9f1624" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "11d958a7-8e83-49e2-8d5a-ff7b1d8ea887" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:13:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "11d958a7-8e83-49e2-8d5a-ff7b1d8ea887" - ], - "request-id": [ - "11d958a7-8e83-49e2-8d5a-ff7b1d8ea887" - ], - "elapsed-time": [ - "258" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "cc9a94ca-eb72-458d-9731-5a903c0f1caf" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091321Z:cc9a94ca-eb72-458d-9731-5a903c0f1caf" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d82ce31f-33ec-4d53-a320-cc7e50ebdf26" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:13:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d82ce31f-33ec-4d53-a320-cc7e50ebdf26" - ], - "request-id": [ - "d82ce31f-33ec-4d53-a320-cc7e50ebdf26" - ], - "elapsed-time": [ - "82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "dc7a341e-9f1b-47b1-bcc3-debeb8f5ca9d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091331Z:dc7a341e-9f1b-47b1-bcc3-debeb8f5ca9d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "432e9f24-fe44-487d-b9e1-8b6776df72d1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:13:41 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "432e9f24-fe44-487d-b9e1-8b6776df72d1" - ], - "request-id": [ - "432e9f24-fe44-487d-b9e1-8b6776df72d1" - ], - "elapsed-time": [ - "112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "5b2761d4-2ce2-4e64-b19f-c4ead7ebfd95" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091341Z:5b2761d4-2ce2-4e64-b19f-c4ead7ebfd95" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5d4ac916-d1c0-4322-b8c3-a768d9ada8f5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:13:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5d4ac916-d1c0-4322-b8c3-a768d9ada8f5" - ], - "request-id": [ - "5d4ac916-d1c0-4322-b8c3-a768d9ada8f5" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "afbc35de-5d6b-449f-924c-0810f8a2d72e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091351Z:afbc35de-5d6b-449f-924c-0810f8a2d72e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "05845df3-3a91-4b29-91c6-8bf8f2db4dad" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:14:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "05845df3-3a91-4b29-91c6-8bf8f2db4dad" - ], - "request-id": [ - "05845df3-3a91-4b29-91c6-8bf8f2db4dad" - ], - "elapsed-time": [ - "101" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "2dfdf341-56e8-4212-97a2-17713311edac" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091401Z:2dfdf341-56e8-4212-97a2-17713311edac" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8c3785b3-8ef8-4833-88cd-01c644eb850e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:14:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8c3785b3-8ef8-4833-88cd-01c644eb850e" - ], - "request-id": [ - "8c3785b3-8ef8-4833-88cd-01c644eb850e" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "79213b36-4d9d-475d-8067-176644addd1e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091412Z:79213b36-4d9d-475d-8067-176644addd1e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "266327f5-0d0d-4f89-a08b-2db506b54adf" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:14:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "266327f5-0d0d-4f89-a08b-2db506b54adf" - ], - "request-id": [ - "266327f5-0d0d-4f89-a08b-2db506b54adf" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "0e324d74-3b7d-4458-aa8d-663c1081f792" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091422Z:0e324d74-3b7d-4458-aa8d-663c1081f792" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7531f8c7-bdda-45bb-8d01-345c0c0a025b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:14:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7531f8c7-bdda-45bb-8d01-345c0c0a025b" - ], - "request-id": [ - "7531f8c7-bdda-45bb-8d01-345c0c0a025b" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "5ebf0f70-e3da-4a74-bdfb-6954151d3a74" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091432Z:5ebf0f70-e3da-4a74-bdfb-6954151d3a74" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a34f06c-4be7-4b07-a771-e5e83f75da28" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:14:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3a34f06c-4be7-4b07-a771-e5e83f75da28" - ], - "request-id": [ - "3a34f06c-4be7-4b07-a771-e5e83f75da28" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "d0ab6ecd-5456-4b6c-b0c9-c3513a7f42cc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091442Z:d0ab6ecd-5456-4b6c-b0c9-c3513a7f42cc" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3aabeb96-6783-4ce4-8c1e-527251122f03" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:14:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3aabeb96-6783-4ce4-8c1e-527251122f03" - ], - "request-id": [ - "3aabeb96-6783-4ce4-8c1e-527251122f03" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-correlation-request-id": [ - "3d084891-5387-434d-b2e8-63987e33a9da" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091452Z:3d084891-5387-434d-b2e8-63987e33a9da" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d7cbc6a4-156f-4e5d-b9e8-67d3f49b6908" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:15:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d7cbc6a4-156f-4e5d-b9e8-67d3f49b6908" - ], - "request-id": [ - "d7cbc6a4-156f-4e5d-b9e8-67d3f49b6908" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], - "x-ms-correlation-request-id": [ - "c51da685-d810-495f-bc6c-62ac54c66e2b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091503Z:c51da685-d810-495f-bc6c-62ac54c66e2b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2cba9628-8412-471f-b8a3-97323f6d053b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:15:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2cba9628-8412-471f-b8a3-97323f6d053b" - ], - "request-id": [ - "2cba9628-8412-471f-b8a3-97323f6d053b" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-correlation-request-id": [ - "abb63cc1-9edb-46b1-a659-7f0413cf3472" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091513Z:abb63cc1-9edb-46b1-a659-7f0413cf3472" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d8cdc6b-0314-4a74-89c8-a725afd0450c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:15:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7d8cdc6b-0314-4a74-89c8-a725afd0450c" - ], - "request-id": [ - "7d8cdc6b-0314-4a74-89c8-a725afd0450c" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "1129b12f-2e46-49cc-8b62-fa38655f4e9a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091523Z:1129b12f-2e46-49cc-8b62-fa38655f4e9a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc315dfc-974f-4b3b-bc09-4a143ac9276f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:15:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cc315dfc-974f-4b3b-bc09-4a143ac9276f" - ], - "request-id": [ - "cc315dfc-974f-4b3b-bc09-4a143ac9276f" - ], - "elapsed-time": [ - "113" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "ca21eaef-6cc8-4932-b594-e649e35bbc5a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091533Z:ca21eaef-6cc8-4932-b594-e649e35bbc5a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7baa4419-0c49-4d25-bb86-3745a6c55657" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:15:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7baa4419-0c49-4d25-bb86-3745a6c55657" - ], - "request-id": [ - "7baa4419-0c49-4d25-bb86-3745a6c55657" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-correlation-request-id": [ - "426f1fed-130f-46ca-b98b-e52f9325a99b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091543Z:426f1fed-130f-46ca-b98b-e52f9325a99b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b45fa76-9787-4d03-a1ae-c1ee04e7a846" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:15:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3b45fa76-9787-4d03-a1ae-c1ee04e7a846" - ], - "request-id": [ - "3b45fa76-9787-4d03-a1ae-c1ee04e7a846" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], - "x-ms-correlation-request-id": [ - "334e8202-f221-47f1-8768-8bd8af5529e6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091553Z:334e8202-f221-47f1-8768-8bd8af5529e6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2830a28-9ec6-4aaf-9125-460b3d7dbed3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:16:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e2830a28-9ec6-4aaf-9125-460b3d7dbed3" - ], - "request-id": [ - "e2830a28-9ec6-4aaf-9125-460b3d7dbed3" - ], - "elapsed-time": [ - "113" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-correlation-request-id": [ - "9b10d1f9-a8ae-4347-b140-d14f569237bd" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091604Z:9b10d1f9-a8ae-4347-b140-d14f569237bd" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2ba8ef0-1179-43b1-8c29-5fccb20beba5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:16:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e2ba8ef0-1179-43b1-8c29-5fccb20beba5" - ], - "request-id": [ - "e2ba8ef0-1179-43b1-8c29-5fccb20beba5" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "996c0b00-56f3-4cee-9e95-051fcc726cf2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091614Z:996c0b00-56f3-4cee-9e95-051fcc726cf2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "38e815ea-3378-49f9-a25f-be173bb9eb9d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:16:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "38e815ea-3378-49f9-a25f-be173bb9eb9d" - ], - "request-id": [ - "38e815ea-3378-49f9-a25f-be173bb9eb9d" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "cd63e0e0-ec7d-4536-b997-30e783a33d89" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091624Z:cd63e0e0-ec7d-4536-b997-30e783a33d89" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ed7c0f14-fd2a-4b27-bf1d-6bd2edc36486" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:16:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ed7c0f14-fd2a-4b27-bf1d-6bd2edc36486" - ], - "request-id": [ - "ed7c0f14-fd2a-4b27-bf1d-6bd2edc36486" - ], - "elapsed-time": [ - "226" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], - "x-ms-correlation-request-id": [ - "a85d2de1-4a36-4aa5-bdda-a10c479959b4" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091634Z:a85d2de1-4a36-4aa5-bdda-a10c479959b4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ac9e1b31-4af3-4a65-936a-fb2ef42bf1db" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:16:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ac9e1b31-4af3-4a65-936a-fb2ef42bf1db" - ], - "request-id": [ - "ac9e1b31-4af3-4a65-936a-fb2ef42bf1db" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "025436b8-28d2-465c-a203-40feaf0cf22a" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091645Z:025436b8-28d2-465c-a203-40feaf0cf22a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7fce6a7f-f16a-4904-b2e1-ddf6d3486120" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:16:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7fce6a7f-f16a-4904-b2e1-ddf6d3486120" - ], - "request-id": [ - "7fce6a7f-f16a-4904-b2e1-ddf6d3486120" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" - ], - "x-ms-correlation-request-id": [ - "2b5dddb7-9a18-4311-9050-0e47970753e5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091655Z:2b5dddb7-9a18-4311-9050-0e47970753e5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3cc1d144-769c-4c27-a7d0-9cd0f0372fff" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:17:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3cc1d144-769c-4c27-a7d0-9cd0f0372fff" - ], - "request-id": [ - "3cc1d144-769c-4c27-a7d0-9cd0f0372fff" - ], - "elapsed-time": [ - "91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], - "x-ms-correlation-request-id": [ - "010066ce-92c1-43a1-945b-2efe1a38ad1b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091705Z:010066ce-92c1-43a1-945b-2efe1a38ad1b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f458670-80e3-4420-8004-16396aaba72d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:17:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6f458670-80e3-4420-8004-16396aaba72d" - ], - "request-id": [ - "6f458670-80e3-4420-8004-16396aaba72d" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" - ], - "x-ms-correlation-request-id": [ - "b4cd52af-6180-4bd6-ad21-db89d3d448cc" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091715Z:b4cd52af-6180-4bd6-ad21-db89d3d448cc" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ca589de-30d5-4f24-9cef-0fda4634cc9f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:17:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6ca589de-30d5-4f24-9cef-0fda4634cc9f" - ], - "request-id": [ - "6ca589de-30d5-4f24-9cef-0fda4634cc9f" - ], - "elapsed-time": [ - "90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], - "x-ms-correlation-request-id": [ - "c7130836-5f93-4802-9789-70491b99bbc0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091725Z:c7130836-5f93-4802-9789-70491b99bbc0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ce69e5f-0e2d-40cd-9bcd-0b2a01cfc549" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:17:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8ce69e5f-0e2d-40cd-9bcd-0b2a01cfc549" - ], - "request-id": [ - "8ce69e5f-0e2d-40cd-9bcd-0b2a01cfc549" - ], - "elapsed-time": [ - "295" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-correlation-request-id": [ - "ddfaa0fe-fc70-472a-b814-b92041f14883" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091736Z:ddfaa0fe-fc70-472a-b814-b92041f14883" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d879e43b-0e63-44ef-9e10-2a8b253813e7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:17:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d879e43b-0e63-44ef-9e10-2a8b253813e7" - ], - "request-id": [ - "d879e43b-0e63-44ef-9e10-2a8b253813e7" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-correlation-request-id": [ - "df812a93-29e0-4234-880e-268bc10a1056" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091746Z:df812a93-29e0-4234-880e-268bc10a1056" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "870c8d74-19bd-4c69-b35a-f6c41333acbc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:17:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "870c8d74-19bd-4c69-b35a-f6c41333acbc" - ], - "request-id": [ - "870c8d74-19bd-4c69-b35a-f6c41333acbc" - ], - "elapsed-time": [ - "65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-correlation-request-id": [ - "a63dbdfe-8424-4cab-8519-63f09c41c15b" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091756Z:a63dbdfe-8424-4cab-8519-63f09c41c15b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0e3b4306-7f22-483c-adf2-d7f3878e934f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:18:06 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0e3b4306-7f22-483c-adf2-d7f3878e934f" - ], - "request-id": [ - "0e3b4306-7f22-483c-adf2-d7f3878e934f" - ], - "elapsed-time": [ - "184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "7987d9cd-442a-477c-a033-2c16434e9257" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091806Z:7987d9cd-442a-477c-a033-2c16434e9257" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "626523fc-99b8-4800-9446-778bc57ba7b3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:18:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "626523fc-99b8-4800-9446-778bc57ba7b3" - ], - "request-id": [ - "626523fc-99b8-4800-9446-778bc57ba7b3" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-correlation-request-id": [ - "7db1d410-e43f-4be6-92dd-2d7145ac3404" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091817Z:7db1d410-e43f-4be6-92dd-2d7145ac3404" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a366336-5caa-45e2-ac79-c9f55c47071b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:18:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2a366336-5caa-45e2-ac79-c9f55c47071b" - ], - "request-id": [ - "2a366336-5caa-45e2-ac79-c9f55c47071b" - ], - "elapsed-time": [ - "115" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-correlation-request-id": [ - "0d96bbac-0da5-4894-a5a2-fbe6226583d7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091827Z:0d96bbac-0da5-4894-a5a2-fbe6226583d7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8106c06d-c01d-4cdb-b78a-ab0a669a4f71" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:18:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8106c06d-c01d-4cdb-b78a-ab0a669a4f71" - ], - "request-id": [ - "8106c06d-c01d-4cdb-b78a-ab0a669a4f71" - ], - "elapsed-time": [ - "145" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "14be6976-0923-4d82-a921-4a138cc73eb7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091837Z:14be6976-0923-4d82-a921-4a138cc73eb7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d193e8d7-20b3-4236-aa7d-d72770f56ed8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:18:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d193e8d7-20b3-4236-aa7d-d72770f56ed8" - ], - "request-id": [ - "d193e8d7-20b3-4236-aa7d-d72770f56ed8" - ], - "elapsed-time": [ - "87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "3d18a12e-3555-49b6-8fbf-413452a29e12" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091847Z:3d18a12e-3555-49b6-8fbf-413452a29e12" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bcf8829-e39a-4879-8d8f-ddd01bd7bd38" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:18:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7bcf8829-e39a-4879-8d8f-ddd01bd7bd38" - ], - "request-id": [ - "7bcf8829-e39a-4879-8d8f-ddd01bd7bd38" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "9d8c9400-68a2-4205-9b37-ebd859d7f7b3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091857Z:9d8c9400-68a2-4205-9b37-ebd859d7f7b3" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "971528e5-2e6a-4855-a016-53c7347db7fc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:19:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "971528e5-2e6a-4855-a016-53c7347db7fc" - ], - "request-id": [ - "971528e5-2e6a-4855-a016-53c7347db7fc" - ], - "elapsed-time": [ - "98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "83886e56-224a-4730-934b-654a4d183d31" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091908Z:83886e56-224a-4730-934b-654a4d183d31" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5bd2aa8a-e5c5-41dd-841b-c94e101a24c4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:19:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5bd2aa8a-e5c5-41dd-841b-c94e101a24c4" - ], - "request-id": [ - "5bd2aa8a-e5c5-41dd-841b-c94e101a24c4" - ], - "elapsed-time": [ - "89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "0aaa2e99-acd8-47d1-aa01-289a8372e0e0" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091918Z:0aaa2e99-acd8-47d1-aa01-289a8372e0e0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a9346ab-690c-4f55-9253-27d4ddcd41d4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:19:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2a9346ab-690c-4f55-9253-27d4ddcd41d4" - ], - "request-id": [ - "2a9346ab-690c-4f55-9253-27d4ddcd41d4" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "25422a36-e604-46f6-b71f-aa27e27f88e2" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091928Z:25422a36-e604-46f6-b71f-aa27e27f88e2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "30f200d0-99a2-443d-8d32-dbfab85a3026" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:19:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "30f200d0-99a2-443d-8d32-dbfab85a3026" - ], - "request-id": [ - "30f200d0-99a2-443d-8d32-dbfab85a3026" - ], - "elapsed-time": [ - "106" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "c5093970-6975-4163-9d39-8b1093238a6d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091938Z:c5093970-6975-4163-9d39-8b1093238a6d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9b5cbce0-3d3f-4644-bfe3-52765dd1eaa6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:19:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9b5cbce0-3d3f-4644-bfe3-52765dd1eaa6" - ], - "request-id": [ - "9b5cbce0-3d3f-4644-bfe3-52765dd1eaa6" - ], - "elapsed-time": [ - "82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "df9cd962-5f80-4a3e-ad9a-27ae912d3c50" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091948Z:df9cd962-5f80-4a3e-ad9a-27ae912d3c50" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d487ba0e-b607-4ffd-af6d-9e35b086f2e8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:19:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d487ba0e-b607-4ffd-af6d-9e35b086f2e8" - ], - "request-id": [ - "d487ba0e-b607-4ffd-af6d-9e35b086f2e8" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "095efa3c-2da7-4833-b479-bad3570b6db6" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T091959Z:095efa3c-2da7-4833-b479-bad3570b6db6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d07c3297-bc51-45c2-b786-1e81d33e4779" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:20:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d07c3297-bc51-45c2-b786-1e81d33e4779" - ], - "request-id": [ - "d07c3297-bc51-45c2-b786-1e81d33e4779" - ], - "elapsed-time": [ - "98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "7222dfe7-a574-4431-876a-7cc99deae4b8" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092009Z:7222dfe7-a574-4431-876a-7cc99deae4b8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d402c98-6674-4521-9b9d-0ad99aedaead" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:20:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6d402c98-6674-4521-9b9d-0ad99aedaead" - ], - "request-id": [ - "6d402c98-6674-4521-9b9d-0ad99aedaead" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "9def44c2-3b2a-485a-a29e-917bc087b182" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092019Z:9def44c2-3b2a-485a-a29e-917bc087b182" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "776574d7-13f2-42d1-8e48-e950c52d736a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:20:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "776574d7-13f2-42d1-8e48-e950c52d736a" - ], - "request-id": [ - "776574d7-13f2-42d1-8e48-e950c52d736a" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-correlation-request-id": [ - "b9df86e3-6997-42a1-807a-603f5837d10e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092029Z:b9df86e3-6997-42a1-807a-603f5837d10e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bdc5110-0300-4cd7-a8eb-59158016fbe3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:20:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7bdc5110-0300-4cd7-a8eb-59158016fbe3" - ], - "request-id": [ - "7bdc5110-0300-4cd7-a8eb-59158016fbe3" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" - ], - "x-ms-correlation-request-id": [ - "15e26f55-63db-4496-923f-e90abb4904ea" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092039Z:15e26f55-63db-4496-923f-e90abb4904ea" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5076a50e-305a-4145-86af-6305a4792eaa" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:20:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5076a50e-305a-4145-86af-6305a4792eaa" - ], - "request-id": [ - "5076a50e-305a-4145-86af-6305a4792eaa" - ], - "elapsed-time": [ - "619" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], - "x-ms-correlation-request-id": [ - "2dcfddb9-d459-4f6e-bc2c-14a6bed28450" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092050Z:2dcfddb9-d459-4f6e-bc2c-14a6bed28450" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "75ee3253-2e73-4a5d-a7ed-47dd7a6afdb4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:21:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "75ee3253-2e73-4a5d-a7ed-47dd7a6afdb4" - ], - "request-id": [ - "75ee3253-2e73-4a5d-a7ed-47dd7a6afdb4" - ], - "elapsed-time": [ - "102" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], - "x-ms-correlation-request-id": [ - "858084dc-d208-4f2f-b771-b495e4bd3ba5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092100Z:858084dc-d208-4f2f-b771-b495e4bd3ba5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "782790a8-ebba-4f74-a918-847a9983fe8c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:21:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "782790a8-ebba-4f74-a918-847a9983fe8c" - ], - "request-id": [ - "782790a8-ebba-4f74-a918-847a9983fe8c" - ], - "elapsed-time": [ - "83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "cc138eea-6343-4a74-bbb7-ec9a9e42de17" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092111Z:cc138eea-6343-4a74-bbb7-ec9a9e42de17" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "99844452-55ad-4e96-8e4d-0c524495defc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:21:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "99844452-55ad-4e96-8e4d-0c524495defc" - ], - "request-id": [ - "99844452-55ad-4e96-8e4d-0c524495defc" - ], - "elapsed-time": [ - "187" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" - ], - "x-ms-correlation-request-id": [ - "01fbe4d7-c3bd-4b79-93e2-7f6cf4da4f97" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092121Z:01fbe4d7-c3bd-4b79-93e2-7f6cf4da4f97" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "77a4fbd7-b29e-454a-beaa-937d3779ddc1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473\",\"name\":\"azs-5473\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 09:21:30 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T09%3A06%3A22.3133306Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "77a4fbd7-b29e-454a-beaa-937d3779ddc1" - ], - "request-id": [ - "77a4fbd7-b29e-454a-beaa-937d3779ddc1" - ], - "elapsed-time": [ - "98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14917" ], "x-ms-correlation-request-id": [ - "d45229e9-f856-4054-b69a-66bfe9ed4456" + "907a438d-497a-43ce-8fe9-9cf17fe52119" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092131Z:d45229e9-f856-4054-b69a-66bfe9ed4456" + "CENTRALUS:20171213T193105Z:907a438d-497a-43ce-8fe9-9cf17fe52119" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5748/providers/Microsoft.Search/searchServices/azs-5473?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1NzQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67b603b6-120a-4cf4-b4c0-a362ae7c7302" + "c540ce50-95f0-427a-937e-eef344d437f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -6540,19 +1976,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 09:21:33 GMT" + "Wed, 13 Dec 2017 19:31:08 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "67b603b6-120a-4cf4-b4c0-a362ae7c7302" + "c540ce50-95f0-427a-937e-eef344d437f6" ], "request-id": [ - "67b603b6-120a-4cf4-b4c0-a362ae7c7302" + "c540ce50-95f0-427a-937e-eef344d437f6" ], "elapsed-time": [ - "1476" + "2554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6564,10 +2000,10 @@ "1186" ], "x-ms-correlation-request-id": [ - "42d21e6f-a0fc-4661-bbb9-e5c6428e7eda" + "4ff18cc3-0e1d-459f-bded-eedb93d5c31f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170509T092133Z:42d21e6f-a0fc-4661-bbb9-e5c6428e7eda" + "CENTRALUS:20171213T193108Z:4ff18cc3-0e1d-459f-bded-eedb93d5c31f" ] }, "StatusCode": 200 @@ -6575,10 +2011,10 @@ ], "Names": { "GenerateName": [ - "azsmnet5748" + "azsmnet6270" ], "GenerateServiceName": [ - "azs-5473" + "azs-3552" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json index 6784f6c5368e3..8b8990f02022e 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e7b80bc-d1cb-413c-ad8e-423bd3eaf336" + "a1d90c2f-7729-4726-849d-4eddb9170807" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:10 GMT" + "Wed, 13 Dec 2017 18:47:02 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1158" + "1199" ], "x-ms-request-id": [ - "82d06ac1-e700-4344-8678-8342c9afd32e" + "3f62370b-06eb-47d5-b1e7-ea912edd7009" ], "x-ms-correlation-request-id": [ - "82d06ac1-e700-4344-8678-8342c9afd32e" + "3f62370b-06eb-47d5-b1e7-ea912edd7009" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042411Z:82d06ac1-e700-4344-8678-8342c9afd32e" + "CENTRALUS:20171213T184703Z:3f62370b-06eb-47d5-b1e7-ea912edd7009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3249?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMjQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3139?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMTM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "8fa1cf77-db9e-4dd0-93f2-36d43c90b42d" + "b4de3c6c-368e-465c-b03e-2ea8a6c83d18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249\",\r\n \"name\": \"azsmnet3249\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139\",\r\n \"name\": \"azsmnet3139\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:12 GMT" + "Wed, 13 Dec 2017 18:47:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1157" + "1198" ], "x-ms-request-id": [ - "65168d89-5be1-447f-8df1-a969096e9ccf" + "13e6174a-9ef6-4583-ab5e-ccd0ee88a5d6" ], "x-ms-correlation-request-id": [ - "65168d89-5be1-447f-8df1-a969096e9ccf" + "13e6174a-9ef6-4583-ab5e-ccd0ee88a5d6" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042412Z:65168d89-5be1-447f-8df1-a969096e9ccf" + "CENTRALUS:20171213T184703Z:13e6174a-9ef6-4583-ab5e-ccd0ee88a5d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"highDensity\"\r\n },\r\n \"sku\": {\r\n \"name\": \"standard3\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,20 +132,20 @@ "181" ], "x-ms-client-request-id": [ - "0605e67b-21c1-458e-98f3-ea6fb571181c" + "c2ea9fae-e4d6-4b8f-8216-4fbd802e8792" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Length": [ - "402" + "400" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:46 GMT" + "Wed, 13 Dec 2017 18:47:39 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "x-ms-request-id": [ - "0605e67b-21c1-458e-98f3-ea6fb571181c" + "c2ea9fae-e4d6-4b8f-8216-4fbd802e8792" ], "request-id": [ - "0605e67b-21c1-458e-98f3-ea6fb571181c" + "c2ea9fae-e4d6-4b8f-8216-4fbd802e8792" ], "elapsed-time": [ - "30152" + "34731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,35 +181,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1156" + "1197" ], "x-ms-correlation-request-id": [ - "a663a78f-4bad-4685-a74a-429e92e2a9f2" + "88148930-f008-48d8-a28a-0d9c1cd0ffaa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042446Z:a663a78f-4bad-4685-a74a-429e92e2a9f2" + "CENTRALUS:20171213T184740Z:88148930-f008-48d8-a28a-0d9c1cd0ffaa" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "75a5d339-876b-48f4-8293-910891d033bf" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +215,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:56 GMT" + "Wed, 13 Dec 2017 18:48:10 GMT" ], "Pragma": [ "no-cache" @@ -230,20 +224,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "75a5d339-876b-48f4-8293-910891d033bf" + "a12e2599-82bb-491e-aafe-9151a75032da" ], "request-id": [ - "75a5d339-876b-48f4-8293-910891d033bf" + "a12e2599-82bb-491e-aafe-9151a75032da" ], "elapsed-time": [ - "425" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,35 +246,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14999" ], "x-ms-correlation-request-id": [ - "c64b6256-a862-4730-84db-3bbf1e542a6b" + "b5de7eb8-9dcc-4de4-9943-36ba5e3684bf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042456Z:c64b6256-a862-4730-84db-3bbf1e542a6b" + "CENTRALUS:20171213T184810Z:b5de7eb8-9dcc-4de4-9943-36ba5e3684bf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b10ce7b3-2bc5-489b-b2ec-8e7bd78db7fd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -292,7 +280,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:25:07 GMT" + "Wed, 13 Dec 2017 18:48:39 GMT" ], "Pragma": [ "no-cache" @@ -301,20 +289,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b10ce7b3-2bc5-489b-b2ec-8e7bd78db7fd" + "14b7eb78-7a11-4f6e-b812-b1309fa12540" ], "request-id": [ - "b10ce7b3-2bc5-489b-b2ec-8e7bd78db7fd" + "14b7eb78-7a11-4f6e-b812-b1309fa12540" ], "elapsed-time": [ - "91" + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -323,35 +311,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "7edfb153-ebe8-4499-a26a-28311463f313" + "908fc76d-1487-4e35-8eee-a27097d12137" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042507Z:7edfb153-ebe8-4499-a26a-28311463f313" + "CENTRALUS:20171213T184840Z:908fc76d-1487-4e35-8eee-a27097d12137" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3c3e5512-938f-4cf1-bfc5-27040e2a61ee" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -363,7 +345,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:25:17 GMT" + "Wed, 13 Dec 2017 18:49:09 GMT" ], "Pragma": [ "no-cache" @@ -372,20 +354,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3c3e5512-938f-4cf1-bfc5-27040e2a61ee" + "87eaab12-b818-4592-be96-90f5b2660f09" ], "request-id": [ - "3c3e5512-938f-4cf1-bfc5-27040e2a61ee" + "87eaab12-b818-4592-be96-90f5b2660f09" ], "elapsed-time": [ - "82" + "100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -394,35 +376,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "da645ce4-77c9-4cc1-b93e-5fbd88c7cae6" + "c33a535b-65c2-453d-b2cb-d5f0dc193b9f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042517Z:da645ce4-77c9-4cc1-b93e-5fbd88c7cae6" + "CENTRALUS:20171213T184910Z:c33a535b-65c2-453d-b2cb-d5f0dc193b9f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "40ccae04-fdd0-48ac-bfe0-d0721e970262" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -434,7 +410,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:25:27 GMT" + "Wed, 13 Dec 2017 18:49:39 GMT" ], "Pragma": [ "no-cache" @@ -443,20 +419,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "40ccae04-fdd0-48ac-bfe0-d0721e970262" + "d3df0ffc-277a-4a33-890a-4c8d752609cb" ], "request-id": [ - "40ccae04-fdd0-48ac-bfe0-d0721e970262" + "d3df0ffc-277a-4a33-890a-4c8d752609cb" ], "elapsed-time": [ - "100" + "97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,35 +441,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "2f24c07d-978a-4221-aeb4-1055dc8b1db5" + "1b1b0f43-19a8-48af-a6ad-09f403ada791" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042528Z:2f24c07d-978a-4221-aeb4-1055dc8b1db5" + "CENTRALUS:20171213T184940Z:1b1b0f43-19a8-48af-a6ad-09f403ada791" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c451ab8e-6cca-45b7-8d2e-ba2a26b6c88a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -505,7 +475,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:25:37 GMT" + "Wed, 13 Dec 2017 18:50:10 GMT" ], "Pragma": [ "no-cache" @@ -514,17 +484,17 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c451ab8e-6cca-45b7-8d2e-ba2a26b6c88a" + "8eefb316-5f1f-499b-ab2d-2a97fd391a25" ], "request-id": [ - "c451ab8e-6cca-45b7-8d2e-ba2a26b6c88a" + "8eefb316-5f1f-499b-ab2d-2a97fd391a25" ], "elapsed-time": [ "74" @@ -536,35 +506,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14995" ], "x-ms-correlation-request-id": [ - "9e12d83f-5d30-45a9-9c68-251df54c3020" + "1e04065b-4b44-4c39-85ff-9487b18a776a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042538Z:9e12d83f-5d30-45a9-9c68-251df54c3020" + "CENTRALUS:20171213T185011Z:1e04065b-4b44-4c39-85ff-9487b18a776a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8fdef3ff-4eb0-4861-8b13-f9d8f91ea562" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -576,7 +540,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:25:48 GMT" + "Wed, 13 Dec 2017 18:50:40 GMT" ], "Pragma": [ "no-cache" @@ -585,20 +549,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8fdef3ff-4eb0-4861-8b13-f9d8f91ea562" + "b4cfee31-ebc7-44ff-b5a2-b83d3fb85f1d" ], "request-id": [ - "8fdef3ff-4eb0-4861-8b13-f9d8f91ea562" + "b4cfee31-ebc7-44ff-b5a2-b83d3fb85f1d" ], "elapsed-time": [ - "191" + "135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -607,35 +571,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14994" ], "x-ms-correlation-request-id": [ - "f7367ab5-df5d-4574-ac55-0758d3a79246" + "90fed168-1c12-4e89-a746-5593f723aed2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042549Z:f7367ab5-df5d-4574-ac55-0758d3a79246" + "CENTRALUS:20171213T185041Z:90fed168-1c12-4e89-a746-5593f723aed2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2c6a1f0b-e0a9-4ced-bd3b-470f83999ee9" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -647,7 +605,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:25:59 GMT" + "Wed, 13 Dec 2017 18:51:10 GMT" ], "Pragma": [ "no-cache" @@ -656,20 +614,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2c6a1f0b-e0a9-4ced-bd3b-470f83999ee9" + "2d70c7ec-d592-44d8-99f9-778918c8b62c" ], "request-id": [ - "2c6a1f0b-e0a9-4ced-bd3b-470f83999ee9" + "2d70c7ec-d592-44d8-99f9-778918c8b62c" ], "elapsed-time": [ - "108" + "103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,35 +636,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14993" ], "x-ms-correlation-request-id": [ - "06a41216-d346-4398-a28b-4381a6b5562a" + "b5110f32-4aa8-404f-a042-19903b040651" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042559Z:06a41216-d346-4398-a28b-4381a6b5562a" + "CENTRALUS:20171213T185111Z:b5110f32-4aa8-404f-a042-19903b040651" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d8660473-d7ac-4f46-9b42-6503d08c442f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -718,7 +670,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:26:09 GMT" + "Wed, 13 Dec 2017 18:51:41 GMT" ], "Pragma": [ "no-cache" @@ -727,20 +679,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d8660473-d7ac-4f46-9b42-6503d08c442f" + "1a6ec53d-60d9-4b95-b56c-555a837986a5" ], "request-id": [ - "d8660473-d7ac-4f46-9b42-6503d08c442f" + "1a6ec53d-60d9-4b95-b56c-555a837986a5" ], "elapsed-time": [ - "99" + "89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,35 +701,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14992" ], "x-ms-correlation-request-id": [ - "b2cfedf1-f998-4946-908b-657b030d8008" + "42ee99fc-5235-4adb-b5df-14b1772f4b35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042609Z:b2cfedf1-f998-4946-908b-657b030d8008" + "CENTRALUS:20171213T185141Z:42ee99fc-5235-4adb-b5df-14b1772f4b35" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "896546c9-3cbf-4188-b5f6-1fa87c7e2035" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +735,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:26:20 GMT" + "Wed, 13 Dec 2017 18:52:11 GMT" ], "Pragma": [ "no-cache" @@ -798,20 +744,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "896546c9-3cbf-4188-b5f6-1fa87c7e2035" + "377adc4e-af17-4940-92dd-396704f92a02" ], "request-id": [ - "896546c9-3cbf-4188-b5f6-1fa87c7e2035" + "377adc4e-af17-4940-92dd-396704f92a02" ], "elapsed-time": [ - "100" + "87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,35 +766,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14991" ], "x-ms-correlation-request-id": [ - "637371ef-b4fc-4890-86a2-edf0d25a9019" + "91e0cf4f-4ee1-45cc-9e45-f2233638cbe2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042620Z:637371ef-b4fc-4890-86a2-edf0d25a9019" + "CENTRALUS:20171213T185211Z:91e0cf4f-4ee1-45cc-9e45-f2233638cbe2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5539e9c9-abf6-4c67-b73b-3a380eb8dbaf" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -860,7 +800,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:26:30 GMT" + "Wed, 13 Dec 2017 18:52:42 GMT" ], "Pragma": [ "no-cache" @@ -869,20 +809,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5539e9c9-abf6-4c67-b73b-3a380eb8dbaf" + "9cce812d-7acd-4fb5-b45b-cec0df1638d8" ], "request-id": [ - "5539e9c9-abf6-4c67-b73b-3a380eb8dbaf" + "9cce812d-7acd-4fb5-b45b-cec0df1638d8" ], "elapsed-time": [ - "367" + "371" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,35 +831,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "13ebd641-9b68-48c7-b7af-a39a82a15bef" + "a438e830-f083-4c24-b511-9ea53e66eae7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042631Z:13ebd641-9b68-48c7-b7af-a39a82a15bef" + "CENTRALUS:20171213T185242Z:a438e830-f083-4c24-b511-9ea53e66eae7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8b84b103-30f8-4aa1-ba7b-66f82b92b70b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -931,7 +865,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:26:41 GMT" + "Wed, 13 Dec 2017 18:53:12 GMT" ], "Pragma": [ "no-cache" @@ -940,20 +874,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8b84b103-30f8-4aa1-ba7b-66f82b92b70b" + "ce6a0fbc-5733-447a-8691-81fbca7bebf0" ], "request-id": [ - "8b84b103-30f8-4aa1-ba7b-66f82b92b70b" + "ce6a0fbc-5733-447a-8691-81fbca7bebf0" ], "elapsed-time": [ - "140" + "64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -962,35 +896,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14989" ], "x-ms-correlation-request-id": [ - "e903dce7-010a-4119-aed2-6587e4005339" + "ba8446c2-3762-4c5a-8b3f-cad33a846f42" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042641Z:e903dce7-010a-4119-aed2-6587e4005339" + "CENTRALUS:20171213T185312Z:ba8446c2-3762-4c5a-8b3f-cad33a846f42" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "77c23dad-387a-4ad3-bdc6-3f60d9e0be05" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1002,7 +930,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:26:51 GMT" + "Wed, 13 Dec 2017 18:53:42 GMT" ], "Pragma": [ "no-cache" @@ -1011,20 +939,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "77c23dad-387a-4ad3-bdc6-3f60d9e0be05" + "ab77dfb4-9311-4bed-a745-5563dff7f495" ], "request-id": [ - "77c23dad-387a-4ad3-bdc6-3f60d9e0be05" + "ab77dfb4-9311-4bed-a745-5563dff7f495" ], "elapsed-time": [ - "67" + "270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,35 +961,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14988" ], "x-ms-correlation-request-id": [ - "1fd479a1-d9c6-424a-a6a3-5d11e76cec6b" + "7b9b0615-4262-4295-8c46-1f2a4ea280e3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042651Z:1fd479a1-d9c6-424a-a6a3-5d11e76cec6b" + "CENTRALUS:20171213T185343Z:7b9b0615-4262-4295-8c46-1f2a4ea280e3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "806eb71b-c5c4-4b2c-9c6e-3be108d394cb" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1073,7 +995,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:27:01 GMT" + "Wed, 13 Dec 2017 18:54:13 GMT" ], "Pragma": [ "no-cache" @@ -1082,20 +1004,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "806eb71b-c5c4-4b2c-9c6e-3be108d394cb" + "f0fff42c-695c-45ed-8290-9f9fe5b34dc3" ], "request-id": [ - "806eb71b-c5c4-4b2c-9c6e-3be108d394cb" + "f0fff42c-695c-45ed-8290-9f9fe5b34dc3" ], "elapsed-time": [ - "71" + "123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,35 +1026,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14987" ], "x-ms-correlation-request-id": [ - "26f3ff60-e5da-4bb0-938f-5799d6200c96" + "a8958f36-03a5-4ff3-ad26-032ae39dd59b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042702Z:26f3ff60-e5da-4bb0-938f-5799d6200c96" + "CENTRALUS:20171213T185413Z:a8958f36-03a5-4ff3-ad26-032ae39dd59b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "09c6bbc2-8941-48af-b7c3-bd0e6ce13406" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1144,7 +1060,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:27:12 GMT" + "Wed, 13 Dec 2017 18:54:43 GMT" ], "Pragma": [ "no-cache" @@ -1153,20 +1069,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "09c6bbc2-8941-48af-b7c3-bd0e6ce13406" + "4ecee30f-194c-4d92-a52c-726738ece811" ], "request-id": [ - "09c6bbc2-8941-48af-b7c3-bd0e6ce13406" + "4ecee30f-194c-4d92-a52c-726738ece811" ], "elapsed-time": [ - "151" + "554" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1175,35 +1091,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14986" ], "x-ms-correlation-request-id": [ - "79546186-d91a-484f-878e-fbd3c6d43119" + "0e348fe1-aa67-4e31-95c0-564d743e3e80" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042712Z:79546186-d91a-484f-878e-fbd3c6d43119" + "CENTRALUS:20171213T185444Z:0e348fe1-aa67-4e31-95c0-564d743e3e80" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "139cc156-3538-4265-8b2f-f4773c6e11e8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1215,7 +1125,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:27:22 GMT" + "Wed, 13 Dec 2017 18:55:13 GMT" ], "Pragma": [ "no-cache" @@ -1224,20 +1134,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "139cc156-3538-4265-8b2f-f4773c6e11e8" + "3fea8712-4f4c-4519-9a77-32c423e68edb" ], "request-id": [ - "139cc156-3538-4265-8b2f-f4773c6e11e8" + "3fea8712-4f4c-4519-9a77-32c423e68edb" ], "elapsed-time": [ - "71" + "102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1246,35 +1156,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14985" ], "x-ms-correlation-request-id": [ - "ccfb5194-3bfa-4400-90ab-08a5dd9000e3" + "82006e07-aeb8-449c-8621-1a0eb002394c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042723Z:ccfb5194-3bfa-4400-90ab-08a5dd9000e3" + "CENTRALUS:20171213T185514Z:82006e07-aeb8-449c-8621-1a0eb002394c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5604c685-bc62-41b3-ae29-86c0d11c79eb" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1286,7 +1190,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:27:33 GMT" + "Wed, 13 Dec 2017 18:55:44 GMT" ], "Pragma": [ "no-cache" @@ -1295,20 +1199,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5604c685-bc62-41b3-ae29-86c0d11c79eb" + "d4781995-a368-400f-8bf9-84d689a5f19c" ], "request-id": [ - "5604c685-bc62-41b3-ae29-86c0d11c79eb" + "d4781995-a368-400f-8bf9-84d689a5f19c" ], "elapsed-time": [ - "406" + "302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,35 +1221,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14984" ], "x-ms-correlation-request-id": [ - "d48f049a-dea9-4dfc-984a-1b12ddd71e65" + "6c2efdec-8a97-4d45-8442-bdf2f6091118" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042733Z:d48f049a-dea9-4dfc-984a-1b12ddd71e65" + "CENTRALUS:20171213T185544Z:6c2efdec-8a97-4d45-8442-bdf2f6091118" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2840ad6a-ce93-481c-aba4-2ebc30bb13ec" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1357,7 +1255,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:27:43 GMT" + "Wed, 13 Dec 2017 18:56:14 GMT" ], "Pragma": [ "no-cache" @@ -1366,20 +1264,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2840ad6a-ce93-481c-aba4-2ebc30bb13ec" + "7ab05184-e985-400d-be27-191cccf6d621" ], "request-id": [ - "2840ad6a-ce93-481c-aba4-2ebc30bb13ec" + "7ab05184-e985-400d-be27-191cccf6d621" ], "elapsed-time": [ - "100" + "101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1388,35 +1286,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14983" ], "x-ms-correlation-request-id": [ - "aad8179a-329b-470f-a792-a6c7b2955ae2" + "7596e3c5-a308-44a6-97e5-6185f1780a7e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042744Z:aad8179a-329b-470f-a792-a6c7b2955ae2" + "CENTRALUS:20171213T185614Z:7596e3c5-a308-44a6-97e5-6185f1780a7e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4313e4b8-a284-43fb-9f05-7251baea5d26" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1428,7 +1320,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:27:54 GMT" + "Wed, 13 Dec 2017 18:56:44 GMT" ], "Pragma": [ "no-cache" @@ -1437,20 +1329,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4313e4b8-a284-43fb-9f05-7251baea5d26" + "dd59394b-5ed4-4499-941f-7c1097af565e" ], "request-id": [ - "4313e4b8-a284-43fb-9f05-7251baea5d26" + "dd59394b-5ed4-4499-941f-7c1097af565e" ], "elapsed-time": [ - "528" + "218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1459,35 +1351,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14982" ], "x-ms-correlation-request-id": [ - "6248b26e-a33a-4fd6-b624-01aa182e9731" + "e3b492e9-d728-48f7-9a09-38369c1b87da" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042755Z:6248b26e-a33a-4fd6-b624-01aa182e9731" + "CENTRALUS:20171213T185645Z:e3b492e9-d728-48f7-9a09-38369c1b87da" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "30f80d4e-f6bf-44b6-84f6-488b174183c1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1499,7 +1385,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:28:04 GMT" + "Wed, 13 Dec 2017 18:57:15 GMT" ], "Pragma": [ "no-cache" @@ -1508,20 +1394,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "30f80d4e-f6bf-44b6-84f6-488b174183c1" + "19644689-2077-435f-b829-b04d83812ed1" ], "request-id": [ - "30f80d4e-f6bf-44b6-84f6-488b174183c1" + "19644689-2077-435f-b829-b04d83812ed1" ], "elapsed-time": [ - "95" + "184" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,35 +1416,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14981" ], "x-ms-correlation-request-id": [ - "4125d410-3e65-4fdd-b5fb-cd50055e8719" + "bea55111-b992-4a04-b546-e0b2672a80aa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042805Z:4125d410-3e65-4fdd-b5fb-cd50055e8719" + "CENTRALUS:20171213T185715Z:bea55111-b992-4a04-b546-e0b2672a80aa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "90c8951f-d54e-457e-9a24-544074b47c15" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1570,7 +1450,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:28:15 GMT" + "Wed, 13 Dec 2017 18:57:45 GMT" ], "Pragma": [ "no-cache" @@ -1579,20 +1459,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "90c8951f-d54e-457e-9a24-544074b47c15" + "2f799772-c74e-4b2b-9c7b-0fe4f65554da" ], "request-id": [ - "90c8951f-d54e-457e-9a24-544074b47c15" + "2f799772-c74e-4b2b-9c7b-0fe4f65554da" ], "elapsed-time": [ - "69" + "322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1601,35 +1481,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14980" ], "x-ms-correlation-request-id": [ - "8252c503-75cb-4332-8827-aabc05d03097" + "092bc88b-57d5-48c2-8c5b-df2d0ced935b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042815Z:8252c503-75cb-4332-8827-aabc05d03097" + "CENTRALUS:20171213T185745Z:092bc88b-57d5-48c2-8c5b-df2d0ced935b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "999a5216-4b6f-4db6-ad99-778539e8d171" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1641,7 +1515,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:28:25 GMT" + "Wed, 13 Dec 2017 18:58:16 GMT" ], "Pragma": [ "no-cache" @@ -1650,20 +1524,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "999a5216-4b6f-4db6-ad99-778539e8d171" + "25a2ae9a-9f16-4da0-9056-139c11210932" ], "request-id": [ - "999a5216-4b6f-4db6-ad99-778539e8d171" + "25a2ae9a-9f16-4da0-9056-139c11210932" ], "elapsed-time": [ - "111" + "63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1672,35 +1546,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14979" ], "x-ms-correlation-request-id": [ - "639b57b2-07cd-496c-b187-e571bb2c3e85" + "0ef9a7e0-7a96-4e9a-927e-4c5a91ab759e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042826Z:639b57b2-07cd-496c-b187-e571bb2c3e85" + "CENTRALUS:20171213T185816Z:0ef9a7e0-7a96-4e9a-927e-4c5a91ab759e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f9219b5-953d-4b0e-a737-667aa0a318b5" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1712,7 +1580,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:28:36 GMT" + "Wed, 13 Dec 2017 18:58:46 GMT" ], "Pragma": [ "no-cache" @@ -1721,20 +1589,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6f9219b5-953d-4b0e-a737-667aa0a318b5" + "93172fca-1feb-4fd5-b488-29fa578d9114" ], "request-id": [ - "6f9219b5-953d-4b0e-a737-667aa0a318b5" + "93172fca-1feb-4fd5-b488-29fa578d9114" ], "elapsed-time": [ - "430" + "220" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,35 +1611,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14978" ], "x-ms-correlation-request-id": [ - "faf52bfa-7c25-4c2e-a8ae-d5b38b263ee1" + "392c37ca-a278-4ab6-9a7d-bace641cfe7a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042837Z:faf52bfa-7c25-4c2e-a8ae-d5b38b263ee1" + "CENTRALUS:20171213T185846Z:392c37ca-a278-4ab6-9a7d-bace641cfe7a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e70ee148-03a6-44a4-a5fc-740c3a26f2a9" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1783,7 +1645,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:28:47 GMT" + "Wed, 13 Dec 2017 18:59:15 GMT" ], "Pragma": [ "no-cache" @@ -1792,20 +1654,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e70ee148-03a6-44a4-a5fc-740c3a26f2a9" + "35585153-331d-4149-8d81-2c7c2af4b263" ], "request-id": [ - "e70ee148-03a6-44a4-a5fc-740c3a26f2a9" + "35585153-331d-4149-8d81-2c7c2af4b263" ], "elapsed-time": [ - "81" + "115" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,35 +1676,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14977" ], "x-ms-correlation-request-id": [ - "ef1a326c-febd-415b-a06d-950b9e65ffc0" + "4205a21e-1a5c-4adc-9c43-f39bcabdce4e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042847Z:ef1a326c-febd-415b-a06d-950b9e65ffc0" + "CENTRALUS:20171213T185916Z:4205a21e-1a5c-4adc-9c43-f39bcabdce4e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3a05a455-04cb-4dc7-83ed-db9bb402d42b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1854,7 +1710,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:28:57 GMT" + "Wed, 13 Dec 2017 18:59:47 GMT" ], "Pragma": [ "no-cache" @@ -1863,20 +1719,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3a05a455-04cb-4dc7-83ed-db9bb402d42b" + "7395fe0a-5c68-423d-88eb-c3e0209f9482" ], "request-id": [ - "3a05a455-04cb-4dc7-83ed-db9bb402d42b" + "7395fe0a-5c68-423d-88eb-c3e0209f9482" ], "elapsed-time": [ - "1008" + "187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,35 +1741,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14976" ], "x-ms-correlation-request-id": [ - "3cfaaf5f-f7aa-4834-bfd3-42463552374c" + "fe58c549-3b2e-4539-a12b-0b261e09968e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042858Z:3cfaaf5f-f7aa-4834-bfd3-42463552374c" + "CENTRALUS:20171213T185947Z:fe58c549-3b2e-4539-a12b-0b261e09968e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8467c3f6-5394-48a9-bc6c-603ab52dc091" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1925,7 +1775,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:29:09 GMT" + "Wed, 13 Dec 2017 19:00:17 GMT" ], "Pragma": [ "no-cache" @@ -1934,20 +1784,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8467c3f6-5394-48a9-bc6c-603ab52dc091" + "f34e5370-24b9-4d1f-b4fb-0d332251823f" ], "request-id": [ - "8467c3f6-5394-48a9-bc6c-603ab52dc091" + "f34e5370-24b9-4d1f-b4fb-0d332251823f" ], "elapsed-time": [ - "72" + "91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1956,35 +1806,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14975" ], "x-ms-correlation-request-id": [ - "99dc9682-f3c3-4569-8151-6ece845802c0" + "c264cb8d-4443-46ab-927d-14d88b9c6f05" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042909Z:99dc9682-f3c3-4569-8151-6ece845802c0" + "CENTRALUS:20171213T190017Z:c264cb8d-4443-46ab-927d-14d88b9c6f05" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9da32a08-ee69-493d-8ea6-68ad75065375" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1996,7 +1840,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:29:19 GMT" + "Wed, 13 Dec 2017 19:00:47 GMT" ], "Pragma": [ "no-cache" @@ -2005,20 +1849,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9da32a08-ee69-493d-8ea6-68ad75065375" + "ab6f2339-b900-4577-a1a4-b47a0ed084c6" ], "request-id": [ - "9da32a08-ee69-493d-8ea6-68ad75065375" + "ab6f2339-b900-4577-a1a4-b47a0ed084c6" ], "elapsed-time": [ - "133" + "227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2027,35 +1871,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14974" ], "x-ms-correlation-request-id": [ - "2ef15227-2ff8-45ad-96ed-65f2a460df7d" + "07a29144-da8d-495b-b197-7ea61c7c3fd0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042919Z:2ef15227-2ff8-45ad-96ed-65f2a460df7d" + "CENTRALUS:20171213T190047Z:07a29144-da8d-495b-b197-7ea61c7c3fd0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "cda59870-4fb2-40bb-bf0a-ed193724d91f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2067,7 +1905,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:29:29 GMT" + "Wed, 13 Dec 2017 19:01:18 GMT" ], "Pragma": [ "no-cache" @@ -2076,20 +1914,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "cda59870-4fb2-40bb-bf0a-ed193724d91f" + "c4774039-424b-432a-9a8b-0396d92aaec2" ], "request-id": [ - "cda59870-4fb2-40bb-bf0a-ed193724d91f" + "c4774039-424b-432a-9a8b-0396d92aaec2" ], "elapsed-time": [ - "93" + "166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2098,35 +1936,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14973" ], "x-ms-correlation-request-id": [ - "6f52c452-4815-4ea8-9bbd-804026ebdad2" + "49b2ac04-51c3-4ede-adc9-1de4d4523d26" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042929Z:6f52c452-4815-4ea8-9bbd-804026ebdad2" + "CENTRALUS:20171213T190118Z:49b2ac04-51c3-4ede-adc9-1de4d4523d26" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "296addaa-bdd2-42fc-a105-03afd569f2c9" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2138,7 +1970,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:29:39 GMT" + "Wed, 13 Dec 2017 19:01:50 GMT" ], "Pragma": [ "no-cache" @@ -2147,20 +1979,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "296addaa-bdd2-42fc-a105-03afd569f2c9" + "e481e279-aa1e-4488-a56c-286fcc540450" ], "request-id": [ - "296addaa-bdd2-42fc-a105-03afd569f2c9" + "e481e279-aa1e-4488-a56c-286fcc540450" ], "elapsed-time": [ - "53" + "2625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,35 +2001,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14972" ], "x-ms-correlation-request-id": [ - "b86b59bb-49c9-4313-895f-ca37479b7bac" + "65478b78-8cdf-42d7-ac1f-05b03fb937e4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042940Z:b86b59bb-49c9-4313-895f-ca37479b7bac" + "CENTRALUS:20171213T190150Z:65478b78-8cdf-42d7-ac1f-05b03fb937e4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2f694985-df1d-4917-a1ce-b8cbdefe0443" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2209,7 +2035,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:29:50 GMT" + "Wed, 13 Dec 2017 19:02:20 GMT" ], "Pragma": [ "no-cache" @@ -2218,20 +2044,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" + "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2f694985-df1d-4917-a1ce-b8cbdefe0443" + "4fb66415-c9f3-4c16-a478-d280e9e019a1" ], "request-id": [ - "2f694985-df1d-4917-a1ce-b8cbdefe0443" + "4fb66415-c9f3-4c16-a478-d280e9e019a1" ], "elapsed-time": [ - "122" + "103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2240,4504 +2066,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "ca80ecc2-aa1c-4ab3-a47b-860c3d4e9ce5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042950Z:ca80ecc2-aa1c-4ab3-a47b-860c3d4e9ce5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2fe6e734-ecd6-417a-ace2-250ba7c227b4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:30:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2fe6e734-ecd6-417a-ace2-250ba7c227b4" - ], - "request-id": [ - "2fe6e734-ecd6-417a-ace2-250ba7c227b4" - ], - "elapsed-time": [ - "165" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "edb2f0d5-2940-4267-a91c-7a982bc0abd1" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043001Z:edb2f0d5-2940-4267-a91c-7a982bc0abd1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "10e30e97-6a6e-419f-804a-3670fc22d909" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:30:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "10e30e97-6a6e-419f-804a-3670fc22d909" - ], - "request-id": [ - "10e30e97-6a6e-419f-804a-3670fc22d909" - ], - "elapsed-time": [ - "82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "cb038104-f7c8-457f-bab2-43421ede6297" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043011Z:cb038104-f7c8-457f-bab2-43421ede6297" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9a4dcc0a-8c10-4638-ad06-512d46be09d4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:30:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9a4dcc0a-8c10-4638-ad06-512d46be09d4" - ], - "request-id": [ - "9a4dcc0a-8c10-4638-ad06-512d46be09d4" - ], - "elapsed-time": [ - "252" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "808acf84-1f14-4b60-a441-a4e9e660037f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043022Z:808acf84-1f14-4b60-a441-a4e9e660037f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a2dd96b1-0cb9-4a78-a884-23bee6a48a1f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:30:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a2dd96b1-0cb9-4a78-a884-23bee6a48a1f" - ], - "request-id": [ - "a2dd96b1-0cb9-4a78-a884-23bee6a48a1f" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "8808537f-0727-4b56-b9ba-d1df52f81ac8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043032Z:8808537f-0727-4b56-b9ba-d1df52f81ac8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7af48b6c-0a67-429b-a79f-3cbf69f76c62" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:30:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7af48b6c-0a67-429b-a79f-3cbf69f76c62" - ], - "request-id": [ - "7af48b6c-0a67-429b-a79f-3cbf69f76c62" - ], - "elapsed-time": [ - "300" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "eb281832-e221-464c-bddd-9a89fdfd21f5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043043Z:eb281832-e221-464c-bddd-9a89fdfd21f5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e0347ce7-aa21-4c3f-8fe5-c8b60546a6cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:30:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e0347ce7-aa21-4c3f-8fe5-c8b60546a6cc" - ], - "request-id": [ - "e0347ce7-aa21-4c3f-8fe5-c8b60546a6cc" - ], - "elapsed-time": [ - "118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "cb135870-7449-43a6-babe-98367ec65e43" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043053Z:cb135870-7449-43a6-babe-98367ec65e43" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70877c82-8e8a-46e7-a1e7-6a2da271d9f8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:31:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "70877c82-8e8a-46e7-a1e7-6a2da271d9f8" - ], - "request-id": [ - "70877c82-8e8a-46e7-a1e7-6a2da271d9f8" - ], - "elapsed-time": [ - "787" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "bae1187a-8a4d-4760-8f33-cf2bfb2a56e2" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043104Z:bae1187a-8a4d-4760-8f33-cf2bfb2a56e2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "11a0453f-e386-422d-9d86-067602d68e4b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:31:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "11a0453f-e386-422d-9d86-067602d68e4b" - ], - "request-id": [ - "11a0453f-e386-422d-9d86-067602d68e4b" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "e73687f5-ce26-4d80-bfb9-0e7aafdcb87c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043115Z:e73687f5-ce26-4d80-bfb9-0e7aafdcb87c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "91004b58-6a06-43d8-b26d-89bfaf8225ae" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "91004b58-6a06-43d8-b26d-89bfaf8225ae" - ], - "request-id": [ - "91004b58-6a06-43d8-b26d-89bfaf8225ae" - ], - "elapsed-time": [ - "130" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "a024f9b0-5ce3-4b72-85e4-7aa86051c8ec" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043125Z:a024f9b0-5ce3-4b72-85e4-7aa86051c8ec" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "acc84b31-92d2-4c18-a73b-8e4cc2ea0ea8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:31:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "acc84b31-92d2-4c18-a73b-8e4cc2ea0ea8" - ], - "request-id": [ - "acc84b31-92d2-4c18-a73b-8e4cc2ea0ea8" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "8e6906ed-c98d-413e-b2d9-cfdf143712e1" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043135Z:8e6906ed-c98d-413e-b2d9-cfdf143712e1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b98b7b62-634b-452d-af7c-28f7e0f6def4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:31:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b98b7b62-634b-452d-af7c-28f7e0f6def4" - ], - "request-id": [ - "b98b7b62-634b-452d-af7c-28f7e0f6def4" - ], - "elapsed-time": [ - "91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "1ddcc400-d190-41fe-9594-4de795f2bd27" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043146Z:1ddcc400-d190-41fe-9594-4de795f2bd27" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5d313166-728a-41b8-b2ba-2cc8e87a3e7f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:31:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5d313166-728a-41b8-b2ba-2cc8e87a3e7f" - ], - "request-id": [ - "5d313166-728a-41b8-b2ba-2cc8e87a3e7f" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "4cefa255-c544-4663-a264-3b840323d345" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043156Z:4cefa255-c544-4663-a264-3b840323d345" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cb43f212-42c4-4969-872b-e882bbc2b062" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:32:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cb43f212-42c4-4969-872b-e882bbc2b062" - ], - "request-id": [ - "cb43f212-42c4-4969-872b-e882bbc2b062" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "0284bd8f-6f94-47da-bdf1-e724de7ea7f8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043207Z:0284bd8f-6f94-47da-bdf1-e724de7ea7f8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae96fb2f-b44c-4da0-a11e-5eee553b155b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:32:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ae96fb2f-b44c-4da0-a11e-5eee553b155b" - ], - "request-id": [ - "ae96fb2f-b44c-4da0-a11e-5eee553b155b" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "1de87135-99b0-43f4-992d-8798e3d35d1a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043217Z:1de87135-99b0-43f4-992d-8798e3d35d1a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "40a90a50-c66b-4b0e-b673-0463f47f6087" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "40a90a50-c66b-4b0e-b673-0463f47f6087" - ], - "request-id": [ - "40a90a50-c66b-4b0e-b673-0463f47f6087" - ], - "elapsed-time": [ - "169" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "caae4bd8-0107-4d29-9258-258f5b614778" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043228Z:caae4bd8-0107-4d29-9258-258f5b614778" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6aecd2c3-aed8-4b86-ae1b-bdd1187ea6bf" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:32:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6aecd2c3-aed8-4b86-ae1b-bdd1187ea6bf" - ], - "request-id": [ - "6aecd2c3-aed8-4b86-ae1b-bdd1187ea6bf" - ], - "elapsed-time": [ - "164" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "dc36607d-bafc-4028-9a17-f888064790fe" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043238Z:dc36607d-bafc-4028-9a17-f888064790fe" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43490679-21f9-4105-a8f5-b156a164c236" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:32:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "43490679-21f9-4105-a8f5-b156a164c236" - ], - "request-id": [ - "43490679-21f9-4105-a8f5-b156a164c236" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "01e4daca-e0d9-434d-97d4-88c8b4c6ff7d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043248Z:01e4daca-e0d9-434d-97d4-88c8b4c6ff7d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fde6d436-b76a-47f7-89db-34d52a553511" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:32:59 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "fde6d436-b76a-47f7-89db-34d52a553511" - ], - "request-id": [ - "fde6d436-b76a-47f7-89db-34d52a553511" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "3617044c-db96-436e-86fb-0571d176ff01" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043259Z:3617044c-db96-436e-86fb-0571d176ff01" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "46e1f3b7-8863-4149-a322-42910f1e3f2f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:33:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "46e1f3b7-8863-4149-a322-42910f1e3f2f" - ], - "request-id": [ - "46e1f3b7-8863-4149-a322-42910f1e3f2f" - ], - "elapsed-time": [ - "119" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "37a9bcbd-4266-4dcc-8cb9-29031c68bd3e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043309Z:37a9bcbd-4266-4dcc-8cb9-29031c68bd3e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a757a126-d9d4-488a-8bac-3f521fefab0e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:33:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a757a126-d9d4-488a-8bac-3f521fefab0e" - ], - "request-id": [ - "a757a126-d9d4-488a-8bac-3f521fefab0e" - ], - "elapsed-time": [ - "83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "eabead91-6b60-46a8-8948-1be9f84c2b99" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043320Z:eabead91-6b60-46a8-8948-1be9f84c2b99" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8cac088d-0f74-4fb3-8ca8-f4b327802479" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:33:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8cac088d-0f74-4fb3-8ca8-f4b327802479" - ], - "request-id": [ - "8cac088d-0f74-4fb3-8ca8-f4b327802479" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-correlation-request-id": [ - "23e20160-a098-47cf-8f6b-7d2ea2749ec8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043330Z:23e20160-a098-47cf-8f6b-7d2ea2749ec8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e16c342-b193-48a2-a9a5-e4a61b0a5549" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:33:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9e16c342-b193-48a2-a9a5-e4a61b0a5549" - ], - "request-id": [ - "9e16c342-b193-48a2-a9a5-e4a61b0a5549" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], - "x-ms-correlation-request-id": [ - "f01a64ae-b79a-494f-a6a1-dea11ab4b8fe" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043340Z:f01a64ae-b79a-494f-a6a1-dea11ab4b8fe" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c215a2be-13a3-4510-ad47-4dca9297b5c9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:33:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c215a2be-13a3-4510-ad47-4dca9297b5c9" - ], - "request-id": [ - "c215a2be-13a3-4510-ad47-4dca9297b5c9" - ], - "elapsed-time": [ - "477" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-correlation-request-id": [ - "6739c31b-6209-47bc-8a32-3813e8fc0457" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043351Z:6739c31b-6209-47bc-8a32-3813e8fc0457" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52d6e22f-8206-4856-8004-d2adf7ddda8d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:34:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "52d6e22f-8206-4856-8004-d2adf7ddda8d" - ], - "request-id": [ - "52d6e22f-8206-4856-8004-d2adf7ddda8d" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "74be8084-2f98-4469-af97-906138736037" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043402Z:74be8084-2f98-4469-af97-906138736037" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f239b288-2f90-4971-be6a-ccc10562923a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:34:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f239b288-2f90-4971-be6a-ccc10562923a" - ], - "request-id": [ - "f239b288-2f90-4971-be6a-ccc10562923a" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "12cc58a0-7585-41e0-9c53-6bf1ad8fdcfe" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043412Z:12cc58a0-7585-41e0-9c53-6bf1ad8fdcfe" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ac97a1d1-2520-4f58-a649-f5a212d19c8b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:34:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ac97a1d1-2520-4f58-a649-f5a212d19c8b" - ], - "request-id": [ - "ac97a1d1-2520-4f58-a649-f5a212d19c8b" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-correlation-request-id": [ - "b647846c-8bbc-471c-a3ee-e30a92aa8615" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043422Z:b647846c-8bbc-471c-a3ee-e30a92aa8615" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "01e02820-1643-4e8e-9ab9-8c88e0c40680" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:34:33 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "01e02820-1643-4e8e-9ab9-8c88e0c40680" - ], - "request-id": [ - "01e02820-1643-4e8e-9ab9-8c88e0c40680" - ], - "elapsed-time": [ - "223" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], - "x-ms-correlation-request-id": [ - "0f457069-709d-4ae2-9f3e-5d10c5d690a8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043433Z:0f457069-709d-4ae2-9f3e-5d10c5d690a8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6489d3dd-7833-405d-9ded-4652ee0af42c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:34:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6489d3dd-7833-405d-9ded-4652ee0af42c" - ], - "request-id": [ - "6489d3dd-7833-405d-9ded-4652ee0af42c" - ], - "elapsed-time": [ - "88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-correlation-request-id": [ - "0a3ace71-e466-4cd0-ae2a-8c3a63d358da" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043443Z:0a3ace71-e466-4cd0-ae2a-8c3a63d358da" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1c4b8ca-958f-421b-938f-a6475e6db68c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:34:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a1c4b8ca-958f-421b-938f-a6475e6db68c" - ], - "request-id": [ - "a1c4b8ca-958f-421b-938f-a6475e6db68c" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "cf06bade-6858-4b1f-b0bd-41c80675144e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043454Z:cf06bade-6858-4b1f-b0bd-41c80675144e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0967a1a-ff82-4a60-a541-40365fbf18eb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:35:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d0967a1a-ff82-4a60-a541-40365fbf18eb" - ], - "request-id": [ - "d0967a1a-ff82-4a60-a541-40365fbf18eb" - ], - "elapsed-time": [ - "100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "2ff42ae6-7b77-459e-8d48-bbc3c6b0b6d3" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043504Z:2ff42ae6-7b77-459e-8d48-bbc3c6b0b6d3" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5f42589c-4b32-42f7-b6fe-c9da0ef7a9bd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:35:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5f42589c-4b32-42f7-b6fe-c9da0ef7a9bd" - ], - "request-id": [ - "5f42589c-4b32-42f7-b6fe-c9da0ef7a9bd" - ], - "elapsed-time": [ - "91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], - "x-ms-correlation-request-id": [ - "d4cd7ed2-3514-4369-bbfa-e3b64af0e655" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043514Z:d4cd7ed2-3514-4369-bbfa-e3b64af0e655" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6152b532-0689-488f-a4c7-06d1e7f67658" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:35:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6152b532-0689-488f-a4c7-06d1e7f67658" - ], - "request-id": [ - "6152b532-0689-488f-a4c7-06d1e7f67658" - ], - "elapsed-time": [ - "103" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "28a2f4b9-cce4-4b4e-8d29-18391bbac678" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043525Z:28a2f4b9-cce4-4b4e-8d29-18391bbac678" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ad8a430-55e4-46e6-a1e7-db799cee6268" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:35:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9ad8a430-55e4-46e6-a1e7-db799cee6268" - ], - "request-id": [ - "9ad8a430-55e4-46e6-a1e7-db799cee6268" - ], - "elapsed-time": [ - "303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" - ], - "x-ms-correlation-request-id": [ - "cd05fa94-714a-4d5a-b21c-1e53e556c310" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043536Z:cd05fa94-714a-4d5a-b21c-1e53e556c310" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "079d7575-3d8d-463a-974c-a50478eaf5dd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:35:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "079d7575-3d8d-463a-974c-a50478eaf5dd" - ], - "request-id": [ - "079d7575-3d8d-463a-974c-a50478eaf5dd" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], - "x-ms-correlation-request-id": [ - "ac9b9a5f-8271-403c-973c-032eb9cb39e8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043546Z:ac9b9a5f-8271-403c-973c-032eb9cb39e8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e124ba80-3990-4de3-865c-8cbcf48fe9dd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:35:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e124ba80-3990-4de3-865c-8cbcf48fe9dd" - ], - "request-id": [ - "e124ba80-3990-4de3-865c-8cbcf48fe9dd" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" - ], - "x-ms-correlation-request-id": [ - "23134c60-12ae-4925-9be6-d2970e7e3bda" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043556Z:23134c60-12ae-4925-9be6-d2970e7e3bda" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f12371f9-0800-40a8-95df-e7d4905fc842" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:36:06 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f12371f9-0800-40a8-95df-e7d4905fc842" - ], - "request-id": [ - "f12371f9-0800-40a8-95df-e7d4905fc842" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], - "x-ms-correlation-request-id": [ - "d0a772ab-5136-4c7c-9f49-c892208f88ba" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043607Z:d0a772ab-5136-4c7c-9f49-c892208f88ba" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "454304fc-6b52-4d07-beb3-59dc97d957cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:36:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "454304fc-6b52-4d07-beb3-59dc97d957cc" - ], - "request-id": [ - "454304fc-6b52-4d07-beb3-59dc97d957cc" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-correlation-request-id": [ - "a0b5869f-5aeb-4eed-9bcf-beb4ee5d21a0" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043617Z:a0b5869f-5aeb-4eed-9bcf-beb4ee5d21a0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5f47849-f97d-4ce7-895b-c8dd7f5139d7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:36:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f5f47849-f97d-4ce7-895b-c8dd7f5139d7" - ], - "request-id": [ - "f5f47849-f97d-4ce7-895b-c8dd7f5139d7" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-correlation-request-id": [ - "889b0ac5-c26d-4a2f-8aff-80b042dc95d7" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043628Z:889b0ac5-c26d-4a2f-8aff-80b042dc95d7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37405e4a-91b1-417c-8da4-4f17427f07b2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:36:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "37405e4a-91b1-417c-8da4-4f17427f07b2" - ], - "request-id": [ - "37405e4a-91b1-417c-8da4-4f17427f07b2" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-correlation-request-id": [ - "b780ba7c-fa2e-44c1-82e3-639e0a11ab6d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043638Z:b780ba7c-fa2e-44c1-82e3-639e0a11ab6d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4844c5f7-0413-45e7-8a8c-7d2cce66b641" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:36:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4844c5f7-0413-45e7-8a8c-7d2cce66b641" - ], - "request-id": [ - "4844c5f7-0413-45e7-8a8c-7d2cce66b641" - ], - "elapsed-time": [ - "117" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "3a5ba192-fc23-46ec-ad82-53409b318990" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043648Z:3a5ba192-fc23-46ec-ad82-53409b318990" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fdbedc91-f90a-455a-9d35-0f84368db19c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:36:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "fdbedc91-f90a-455a-9d35-0f84368db19c" - ], - "request-id": [ - "fdbedc91-f90a-455a-9d35-0f84368db19c" - ], - "elapsed-time": [ - "92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-correlation-request-id": [ - "3ba92e59-f0f6-4945-9563-8ca418d6338f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043659Z:3ba92e59-f0f6-4945-9563-8ca418d6338f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "055444e2-2279-4384-b825-3a6532aaabfd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:37:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "055444e2-2279-4384-b825-3a6532aaabfd" - ], - "request-id": [ - "055444e2-2279-4384-b825-3a6532aaabfd" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-correlation-request-id": [ - "0a9617bc-f0d5-4a9f-bb7a-33f1f2434e73" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043709Z:0a9617bc-f0d5-4a9f-bb7a-33f1f2434e73" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1dfd1bb-2fa6-4731-b2fa-64f702434912" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:37:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a1dfd1bb-2fa6-4731-b2fa-64f702434912" - ], - "request-id": [ - "a1dfd1bb-2fa6-4731-b2fa-64f702434912" - ], - "elapsed-time": [ - "172" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "c6e3b4c3-0904-4514-b2e3-d757dbb1cc42" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043720Z:c6e3b4c3-0904-4514-b2e3-d757dbb1cc42" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6be3ef89-dfc4-46bf-b7dd-4613af1e1e72" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:37:30 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6be3ef89-dfc4-46bf-b7dd-4613af1e1e72" - ], - "request-id": [ - "6be3ef89-dfc4-46bf-b7dd-4613af1e1e72" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "97bf78ae-b05c-4e57-8b2b-2f94ea1b8219" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043730Z:97bf78ae-b05c-4e57-8b2b-2f94ea1b8219" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cac9de7b-ddc7-4d27-9877-873978491157" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:37:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cac9de7b-ddc7-4d27-9877-873978491157" - ], - "request-id": [ - "cac9de7b-ddc7-4d27-9877-873978491157" - ], - "elapsed-time": [ - "139" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "fd79f42d-63cc-465e-89e4-9894f8cf47fc" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043741Z:fd79f42d-63cc-465e-89e4-9894f8cf47fc" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ff08a320-5a84-4aa7-b8f4-2bc2ae5d53ac" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:37:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ff08a320-5a84-4aa7-b8f4-2bc2ae5d53ac" - ], - "request-id": [ - "ff08a320-5a84-4aa7-b8f4-2bc2ae5d53ac" - ], - "elapsed-time": [ - "275" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "422659da-9b44-42b8-bc47-92f6ab335ab8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043751Z:422659da-9b44-42b8-bc47-92f6ab335ab8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "47afef07-a047-42db-8d63-d0150d07ccca" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:38:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "47afef07-a047-42db-8d63-d0150d07ccca" - ], - "request-id": [ - "47afef07-a047-42db-8d63-d0150d07ccca" - ], - "elapsed-time": [ - "138" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "d11a02a8-5fb3-406b-93fb-5ae617261515" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043802Z:d11a02a8-5fb3-406b-93fb-5ae617261515" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d924780f-bf1f-4cf1-b507-75882a142e18" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:38:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d924780f-bf1f-4cf1-b507-75882a142e18" - ], - "request-id": [ - "d924780f-bf1f-4cf1-b507-75882a142e18" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "538be4c5-f71a-4721-8f20-35a628d3cb67" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043812Z:538be4c5-f71a-4721-8f20-35a628d3cb67" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f532e5fe-f79f-490b-a670-0a2018730535" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:38:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f532e5fe-f79f-490b-a670-0a2018730535" - ], - "request-id": [ - "f532e5fe-f79f-490b-a670-0a2018730535" - ], - "elapsed-time": [ - "66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "fc4f1f39-539e-491b-a99b-ce8788612b5d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043823Z:fc4f1f39-539e-491b-a99b-ce8788612b5d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c0cbc4ca-5027-4b4b-8563-7eb52efeed14" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:38:33 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c0cbc4ca-5027-4b4b-8563-7eb52efeed14" - ], - "request-id": [ - "c0cbc4ca-5027-4b4b-8563-7eb52efeed14" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "cf8119fa-10aa-47a8-a7d1-edb9ed3b57e8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043833Z:cf8119fa-10aa-47a8-a7d1-edb9ed3b57e8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae5451fc-30f5-4e95-8d41-7198f8b0f648" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:38:43 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ae5451fc-30f5-4e95-8d41-7198f8b0f648" - ], - "request-id": [ - "ae5451fc-30f5-4e95-8d41-7198f8b0f648" - ], - "elapsed-time": [ - "118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "8cafc847-c7c1-4d77-96ac-49927e3f5cd2" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043843Z:8cafc847-c7c1-4d77-96ac-49927e3f5cd2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e7d311e-78b6-4777-8aac-39b209585901" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:38:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9e7d311e-78b6-4777-8aac-39b209585901" - ], - "request-id": [ - "9e7d311e-78b6-4777-8aac-39b209585901" - ], - "elapsed-time": [ - "303" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "1b7386a2-4ce0-4f8b-91f0-0fbff78866a8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043854Z:1b7386a2-4ce0-4f8b-91f0-0fbff78866a8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "45ede913-5f6f-466f-ac89-2f98fb740de7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:39:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "45ede913-5f6f-466f-ac89-2f98fb740de7" - ], - "request-id": [ - "45ede913-5f6f-466f-ac89-2f98fb740de7" - ], - "elapsed-time": [ - "293" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "50d05156-443b-4f26-bca4-cf31c1650218" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043905Z:50d05156-443b-4f26-bca4-cf31c1650218" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cf305582-4517-4376-b71b-64a0783672ee" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:39:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cf305582-4517-4376-b71b-64a0783672ee" - ], - "request-id": [ - "cf305582-4517-4376-b71b-64a0783672ee" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-correlation-request-id": [ - "55a6d795-e693-4af4-822b-94defc3ea8d9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043915Z:55a6d795-e693-4af4-822b-94defc3ea8d9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8edb3730-23c7-4b54-b044-68c6096970c5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:39:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8edb3730-23c7-4b54-b044-68c6096970c5" - ], - "request-id": [ - "8edb3730-23c7-4b54-b044-68c6096970c5" - ], - "elapsed-time": [ - "1126" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" - ], - "x-ms-correlation-request-id": [ - "bd6fae57-e66d-4a19-bc9f-fa317de721fb" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043926Z:bd6fae57-e66d-4a19-bc9f-fa317de721fb" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4c4f6721-e5e4-4bc4-9dd8-60154e839ba9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:39:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4c4f6721-e5e4-4bc4-9dd8-60154e839ba9" - ], - "request-id": [ - "4c4f6721-e5e4-4bc4-9dd8-60154e839ba9" - ], - "elapsed-time": [ - "205" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" - ], - "x-ms-correlation-request-id": [ - "f879e3ec-11ec-459f-8a11-dccdb82743f9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043937Z:f879e3ec-11ec-459f-8a11-dccdb82743f9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43826c51-a814-41ad-87e0-4839117fbdd0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:39:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "43826c51-a814-41ad-87e0-4839117fbdd0" - ], - "request-id": [ - "43826c51-a814-41ad-87e0-4839117fbdd0" - ], - "elapsed-time": [ - "209" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" - ], - "x-ms-correlation-request-id": [ - "e08c9708-f607-4114-bd10-8f3a180aaef2" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043947Z:e08c9708-f607-4114-bd10-8f3a180aaef2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7cef19e2-09dd-4b33-b48b-db386ef68079" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:39:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7cef19e2-09dd-4b33-b48b-db386ef68079" - ], - "request-id": [ - "7cef19e2-09dd-4b33-b48b-db386ef68079" - ], - "elapsed-time": [ - "93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" - ], - "x-ms-correlation-request-id": [ - "2045dba3-72d8-426e-887f-c851ad100ba5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T043958Z:2045dba3-72d8-426e-887f-c851ad100ba5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1982a015-183c-4dcd-b161-5c74ae584e70" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:40:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1982a015-183c-4dcd-b161-5c74ae584e70" - ], - "request-id": [ - "1982a015-183c-4dcd-b161-5c74ae584e70" - ], - "elapsed-time": [ - "770" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" - ], - "x-ms-correlation-request-id": [ - "a4f53de2-c537-46ba-8155-098bd8e81d19" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T044009Z:a4f53de2-c537-46ba-8155-098bd8e81d19" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cfa55e6e-8a06-407f-805e-b62c42a3bcec" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:40:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cfa55e6e-8a06-407f-805e-b62c42a3bcec" - ], - "request-id": [ - "cfa55e6e-8a06-407f-805e-b62c42a3bcec" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" - ], - "x-ms-correlation-request-id": [ - "0814f7c2-0eeb-463a-ae74-b9c087b55053" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T044019Z:0814f7c2-0eeb-463a-ae74-b9c087b55053" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31827e7a-7593-4a1d-95bc-c156194eec3e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:40:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "31827e7a-7593-4a1d-95bc-c156194eec3e" - ], - "request-id": [ - "31827e7a-7593-4a1d-95bc-c156194eec3e" - ], - "elapsed-time": [ - "154" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" - ], - "x-ms-correlation-request-id": [ - "26f4e434-44a6-4a18-8810-64b4dde6c917" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T044030Z:26f4e434-44a6-4a18-8810-64b4dde6c917" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59e26509-4cd3-4348-9c63-85f071dba7f7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:40:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "59e26509-4cd3-4348-9c63-85f071dba7f7" - ], - "request-id": [ - "59e26509-4cd3-4348-9c63-85f071dba7f7" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" - ], - "x-ms-correlation-request-id": [ - "04046e28-fe83-43d5-8efa-9f5cb47df986" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T044040Z:04046e28-fe83-43d5-8efa-9f5cb47df986" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ed3440ec-77c2-45ca-8b9b-183d47e95164" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644\",\"name\":\"azs-2644\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:40:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A45.8327126Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ed3440ec-77c2-45ca-8b9b-183d47e95164" - ], - "request-id": [ - "ed3440ec-77c2-45ca-8b9b-183d47e95164" - ], - "elapsed-time": [ - "130" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14971" ], "x-ms-correlation-request-id": [ - "c281b3a6-7dca-4b3d-93eb-ec07caf52694" + "4e46e0ed-033f-4075-bf0c-4619483d451a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T044051Z:c281b3a6-7dca-4b3d-93eb-ec07caf52694" + "CENTRALUS:20171213T190221Z:4e46e0ed-033f-4075-bf0c-4619483d451a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3249/providers/Microsoft.Search/searchServices/azs-2644?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yNjQ0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3237fdae-0db6-4902-b0a7-5708754e11bf" + "6547ca9f-9205-4c90-9ee9-fe37feefae1a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -6753,19 +2106,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:40:53 GMT" + "Wed, 13 Dec 2017 19:02:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3237fdae-0db6-4902-b0a7-5708754e11bf" + "6547ca9f-9205-4c90-9ee9-fe37feefae1a" ], "request-id": [ - "3237fdae-0db6-4902-b0a7-5708754e11bf" + "6547ca9f-9205-4c90-9ee9-fe37feefae1a" ], "elapsed-time": [ - "914" + "1663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6774,13 +2127,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1196" ], "x-ms-correlation-request-id": [ - "6263a280-f63e-4347-a124-05fd103465fd" + "9269a545-70e5-4bd7-adcd-b7531df6d9d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T044054Z:6263a280-f63e-4347-a124-05fd103465fd" + "CENTRALUS:20171213T190236Z:9269a545-70e5-4bd7-adcd-b7531df6d9d0" ] }, "StatusCode": 200 @@ -6788,10 +2141,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3249" + "azsmnet3139" ], "GenerateServiceName": [ - "azs-2644" + "azs-417" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json index e2834aabc8700..f08b6685c8745 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b505239f-a8b4-47a0-8ce9-fd57cbbcd946" + "12af6791-324c-49fe-bea6-6ff279c7712a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:14 GMT" + "Wed, 13 Dec 2017 19:02:40 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1194" ], "x-ms-request-id": [ - "ed947352-c071-48b4-8244-50bed74a59f6" + "0a0f4ad5-e43d-4449-a928-68b5ad41c920" ], "x-ms-correlation-request-id": [ - "ed947352-c071-48b4-8244-50bed74a59f6" + "0a0f4ad5-e43d-4449-a928-68b5ad41c920" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040514Z:ed947352-c071-48b4-8244-50bed74a59f6" + "CENTRALUS:20171213T190240Z:0a0f4ad5-e43d-4449-a928-68b5ad41c920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2265?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMjY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7996?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3OTk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "e820cbc0-6c15-42c4-ac29-2de3f7c3836a" + "ec74c0f1-fbc1-48c2-bfae-95bcc2f79838" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265\",\r\n \"name\": \"azsmnet2265\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996\",\r\n \"name\": \"azsmnet7996\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:15 GMT" + "Wed, 13 Dec 2017 19:02:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1193" ], "x-ms-request-id": [ - "f131aeac-97e7-4ab1-ba0e-2a817e629d8c" + "0b612340-1e00-4348-b435-e8679284aaa9" ], "x-ms-correlation-request-id": [ - "f131aeac-97e7-4ab1-ba0e-2a817e629d8c" + "0b612340-1e00-4348-b435-e8679284aaa9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040515Z:f131aeac-97e7-4ab1-ba0e-2a817e629d8c" + "CENTRALUS:20171213T190241Z:0b612340-1e00-4348-b435-e8679284aaa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"standard3\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "177" ], "x-ms-client-request-id": [ - "ba96bfd4-5b8c-4874-8340-a9a07f587e85" + "696a06c0-c74c-4c4a-9da4-d670dede1a0b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Length": [ "398" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:05:41 GMT" + "Wed, 13 Dec 2017 19:03:11 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "x-ms-request-id": [ - "ba96bfd4-5b8c-4874-8340-a9a07f587e85" + "696a06c0-c74c-4c4a-9da4-d670dede1a0b" ], "request-id": [ - "ba96bfd4-5b8c-4874-8340-a9a07f587e85" + "696a06c0-c74c-4c4a-9da4-d670dede1a0b" ], "elapsed-time": [ - "24199" + "30130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,5360 +181,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1136" + "1192" ], "x-ms-correlation-request-id": [ - "eb96f8c9-006b-4ee1-9a97-532484978f29" + "6da03e63-d65c-4443-864a-e073c21c9e90" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040542Z:eb96f8c9-006b-4ee1-9a97-532484978f29" + "CENTRALUS:20171213T190312Z:6da03e63-d65c-4443-864a-e073c21c9e90" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ab1c7042-6d4f-48b3-a5f1-2808dd13bf57" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:05:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ab1c7042-6d4f-48b3-a5f1-2808dd13bf57" - ], - "request-id": [ - "ab1c7042-6d4f-48b3-a5f1-2808dd13bf57" - ], - "elapsed-time": [ - "101" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "45b9e635-b2a5-4295-9e76-1edcbda67e6e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040552Z:45b9e635-b2a5-4295-9e76-1edcbda67e6e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e984c1f-b239-4481-9559-05739912d91e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:06:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7e984c1f-b239-4481-9559-05739912d91e" - ], - "request-id": [ - "7e984c1f-b239-4481-9559-05739912d91e" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "22cfbd63-0391-40ba-a439-a20fc3e24978" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040603Z:22cfbd63-0391-40ba-a439-a20fc3e24978" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1c718ff7-6050-4f4a-bea2-8116d0b9f16f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:06:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1c718ff7-6050-4f4a-bea2-8116d0b9f16f" - ], - "request-id": [ - "1c718ff7-6050-4f4a-bea2-8116d0b9f16f" - ], - "elapsed-time": [ - "89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "c357baae-8d9b-4285-b4f6-f0f20c160cc9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040613Z:c357baae-8d9b-4285-b4f6-f0f20c160cc9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6593819b-1861-4136-a9ed-119734737b47" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:06:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6593819b-1861-4136-a9ed-119734737b47" - ], - "request-id": [ - "6593819b-1861-4136-a9ed-119734737b47" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "572ff7bf-4021-42f7-a02e-c17777e09dfd" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040624Z:572ff7bf-4021-42f7-a02e-c17777e09dfd" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d3d0eb4f-11ad-4449-aace-c7ddc3b54302" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:06:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d3d0eb4f-11ad-4449-aace-c7ddc3b54302" - ], - "request-id": [ - "d3d0eb4f-11ad-4449-aace-c7ddc3b54302" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "b22d9ff8-3e60-4a4a-a36b-812c2316eaec" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040634Z:b22d9ff8-3e60-4a4a-a36b-812c2316eaec" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4d349eb9-5786-4c4d-8276-b8f484024461" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:06:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4d349eb9-5786-4c4d-8276-b8f484024461" - ], - "request-id": [ - "4d349eb9-5786-4c4d-8276-b8f484024461" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "c40facf8-28f3-422d-a474-09d2ee91ea9a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040644Z:c40facf8-28f3-422d-a474-09d2ee91ea9a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9e02564c-4c2b-458c-8a6e-5e9869890ade" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:06:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9e02564c-4c2b-458c-8a6e-5e9869890ade" - ], - "request-id": [ - "9e02564c-4c2b-458c-8a6e-5e9869890ade" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "2c97d5a2-86be-4126-b9f1-87bfc8fa10ee" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040655Z:2c97d5a2-86be-4126-b9f1-87bfc8fa10ee" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8169f849-3c04-4ad6-82dd-3e667f136b3f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:07:05 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8169f849-3c04-4ad6-82dd-3e667f136b3f" - ], - "request-id": [ - "8169f849-3c04-4ad6-82dd-3e667f136b3f" - ], - "elapsed-time": [ - "114" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "be417dc1-5718-43c2-a192-aa52b9f5a31b" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040705Z:be417dc1-5718-43c2-a192-aa52b9f5a31b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44a2d093-1ba6-4287-b6e5-2d6fce2a8feb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:07:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "44a2d093-1ba6-4287-b6e5-2d6fce2a8feb" - ], - "request-id": [ - "44a2d093-1ba6-4287-b6e5-2d6fce2a8feb" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "4e703f97-058a-490d-8c46-89ee2e51f494" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040716Z:4e703f97-058a-490d-8c46-89ee2e51f494" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce805f15-119a-404f-96c2-0d8b96db4f29" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:07:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ce805f15-119a-404f-96c2-0d8b96db4f29" - ], - "request-id": [ - "ce805f15-119a-404f-96c2-0d8b96db4f29" - ], - "elapsed-time": [ - "126" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "b9c5dd9b-57e3-4ade-ade6-ea3690ba4f06" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040726Z:b9c5dd9b-57e3-4ade-ade6-ea3690ba4f06" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c71ba1e5-8a0c-4c23-84fd-e45155253e68" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:07:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c71ba1e5-8a0c-4c23-84fd-e45155253e68" - ], - "request-id": [ - "c71ba1e5-8a0c-4c23-84fd-e45155253e68" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "b11d2d10-cb30-4e6f-9e16-2407a596dd30" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040736Z:b11d2d10-cb30-4e6f-9e16-2407a596dd30" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bfc061ba-4484-42a4-bce7-89118138bd8d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:07:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "bfc061ba-4484-42a4-bce7-89118138bd8d" - ], - "request-id": [ - "bfc061ba-4484-42a4-bce7-89118138bd8d" - ], - "elapsed-time": [ - "123" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "5794e681-2043-4721-bee2-92e7ea5bf40f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040747Z:5794e681-2043-4721-bee2-92e7ea5bf40f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "61d34de7-9d4e-4d76-99dc-7acd6c60d712" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:07:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "61d34de7-9d4e-4d76-99dc-7acd6c60d712" - ], - "request-id": [ - "61d34de7-9d4e-4d76-99dc-7acd6c60d712" - ], - "elapsed-time": [ - "83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "428ca24f-ac3a-4de5-b6a1-80422d5f498a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040757Z:428ca24f-ac3a-4de5-b6a1-80422d5f498a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d6b9ba3-f1f8-42be-aa98-37a5b6752e25" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:08:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9d6b9ba3-f1f8-42be-aa98-37a5b6752e25" - ], - "request-id": [ - "9d6b9ba3-f1f8-42be-aa98-37a5b6752e25" - ], - "elapsed-time": [ - "224" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "73a9e32c-73ec-46f7-9ead-2956fab8d774" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040808Z:73a9e32c-73ec-46f7-9ead-2956fab8d774" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "86c424e6-8f2e-406c-b9d0-db3de65495fe" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:08:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "86c424e6-8f2e-406c-b9d0-db3de65495fe" - ], - "request-id": [ - "86c424e6-8f2e-406c-b9d0-db3de65495fe" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "fdbf283c-7166-4434-8854-5a755fc49b59" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040818Z:fdbf283c-7166-4434-8854-5a755fc49b59" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a16d2c6-8da5-43a3-8dfa-840aad79587b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:08:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7a16d2c6-8da5-43a3-8dfa-840aad79587b" - ], - "request-id": [ - "7a16d2c6-8da5-43a3-8dfa-840aad79587b" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "ed19125d-f630-45b0-828a-923cf84caa51" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040829Z:ed19125d-f630-45b0-828a-923cf84caa51" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1ddfcbae-86b5-49de-a2e7-85807bd76af9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:08:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1ddfcbae-86b5-49de-a2e7-85807bd76af9" - ], - "request-id": [ - "1ddfcbae-86b5-49de-a2e7-85807bd76af9" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "69724e04-505b-4758-9aa2-d93446c9c29e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040839Z:69724e04-505b-4758-9aa2-d93446c9c29e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8ec7088-5687-4b07-9e14-eca590601d87" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:08:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c8ec7088-5687-4b07-9e14-eca590601d87" - ], - "request-id": [ - "c8ec7088-5687-4b07-9e14-eca590601d87" - ], - "elapsed-time": [ - "113" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "32f05a7f-9c8a-473d-8f30-a2441830fe45" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040849Z:32f05a7f-9c8a-473d-8f30-a2441830fe45" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a51beb2a-025a-4033-bd55-a182b5aa5094" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:09:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a51beb2a-025a-4033-bd55-a182b5aa5094" - ], - "request-id": [ - "a51beb2a-025a-4033-bd55-a182b5aa5094" - ], - "elapsed-time": [ - "82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "1237fd4d-f0f1-4e59-9266-adee83933f1d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040900Z:1237fd4d-f0f1-4e59-9266-adee83933f1d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d71f397-e2e3-4080-ba92-bb4288545fab" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:09:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9d71f397-e2e3-4080-ba92-bb4288545fab" - ], - "request-id": [ - "9d71f397-e2e3-4080-ba92-bb4288545fab" - ], - "elapsed-time": [ - "160" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "5ad06010-2584-4e36-88e3-d5efa46f58c1" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040910Z:5ad06010-2584-4e36-88e3-d5efa46f58c1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4c86dd08-f889-4cf4-9668-7760fc940925" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:09:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4c86dd08-f889-4cf4-9668-7760fc940925" - ], - "request-id": [ - "4c86dd08-f889-4cf4-9668-7760fc940925" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "f75cdf65-f462-4264-a7f7-6bea0012dec9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040921Z:f75cdf65-f462-4264-a7f7-6bea0012dec9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0f09e88-f5b0-453a-a71d-015e1134ba62" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:09:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f0f09e88-f5b0-453a-a71d-015e1134ba62" - ], - "request-id": [ - "f0f09e88-f5b0-453a-a71d-015e1134ba62" - ], - "elapsed-time": [ - "206" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "3167754f-10f2-4e54-8aea-408640f6b29f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040931Z:3167754f-10f2-4e54-8aea-408640f6b29f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c54afe1b-7e8b-46fe-b645-c931a529676a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:09:41 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c54afe1b-7e8b-46fe-b645-c931a529676a" - ], - "request-id": [ - "c54afe1b-7e8b-46fe-b645-c931a529676a" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "f87c8e95-bd88-4c0a-947a-13cabd2a50d0" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040942Z:f87c8e95-bd88-4c0a-947a-13cabd2a50d0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d38c0bc-5b16-49e1-8672-b03d3a7c5a11" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:09:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7d38c0bc-5b16-49e1-8672-b03d3a7c5a11" - ], - "request-id": [ - "7d38c0bc-5b16-49e1-8672-b03d3a7c5a11" - ], - "elapsed-time": [ - "154" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "cbe5bfe2-075e-409a-9e35-1822474ff507" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040952Z:cbe5bfe2-075e-409a-9e35-1822474ff507" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eaf46ffb-1614-4b11-aeed-866e0fdb8e34" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:10:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "eaf46ffb-1614-4b11-aeed-866e0fdb8e34" - ], - "request-id": [ - "eaf46ffb-1614-4b11-aeed-866e0fdb8e34" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "c87a0a8d-c735-4b46-abf1-e6f27486bbb1" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041002Z:c87a0a8d-c735-4b46-abf1-e6f27486bbb1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5c89c2f0-a9a9-4d35-a0ee-7a54705a203d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:10:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5c89c2f0-a9a9-4d35-a0ee-7a54705a203d" - ], - "request-id": [ - "5c89c2f0-a9a9-4d35-a0ee-7a54705a203d" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "99ba3a3a-667b-4162-abe6-8ed223156994" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041013Z:99ba3a3a-667b-4162-abe6-8ed223156994" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e4557143-d66d-44de-9670-2420c302d719" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:10:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e4557143-d66d-44de-9670-2420c302d719" - ], - "request-id": [ - "e4557143-d66d-44de-9670-2420c302d719" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "90742e51-c14d-461f-b46c-d814dc8013c1" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041023Z:90742e51-c14d-461f-b46c-d814dc8013c1" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b5539c35-0808-4621-bed1-e61e0478da88" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:10:33 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b5539c35-0808-4621-bed1-e61e0478da88" - ], - "request-id": [ - "b5539c35-0808-4621-bed1-e61e0478da88" - ], - "elapsed-time": [ - "237" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "052671a9-71da-4e26-9bf1-415d1d474da9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041034Z:052671a9-71da-4e26-9bf1-415d1d474da9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "33cc3a70-ffae-4e4f-8e3b-5c7156cc2a28" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:10:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "33cc3a70-ffae-4e4f-8e3b-5c7156cc2a28" - ], - "request-id": [ - "33cc3a70-ffae-4e4f-8e3b-5c7156cc2a28" - ], - "elapsed-time": [ - "103" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "8a070ff9-1d52-44e5-962a-d45fcaba434a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041044Z:8a070ff9-1d52-44e5-962a-d45fcaba434a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e639b2ae-0b5e-47ec-8a96-10b475738b42" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:10:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e639b2ae-0b5e-47ec-8a96-10b475738b42" - ], - "request-id": [ - "e639b2ae-0b5e-47ec-8a96-10b475738b42" - ], - "elapsed-time": [ - "182" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "066a4292-83ea-4e3c-aa24-6c04c64a4683" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041055Z:066a4292-83ea-4e3c-aa24-6c04c64a4683" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "579a8e3f-6264-4dd5-9621-cbb826074d53" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:11:05 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "579a8e3f-6264-4dd5-9621-cbb826074d53" - ], - "request-id": [ - "579a8e3f-6264-4dd5-9621-cbb826074d53" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "a3e2bfc1-4e69-44e6-9067-bc25ef82a775" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041105Z:a3e2bfc1-4e69-44e6-9067-bc25ef82a775" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d52ab24-1783-44dd-b40b-3f3b4d943af4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:11:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2d52ab24-1783-44dd-b40b-3f3b4d943af4" - ], - "request-id": [ - "2d52ab24-1783-44dd-b40b-3f3b4d943af4" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "954fdc8e-2931-4132-a5f0-9d4ed6eb6be0" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041115Z:954fdc8e-2931-4132-a5f0-9d4ed6eb6be0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4ac33c3d-4913-446f-a2c3-1d3ebb121d4b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:11:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4ac33c3d-4913-446f-a2c3-1d3ebb121d4b" - ], - "request-id": [ - "4ac33c3d-4913-446f-a2c3-1d3ebb121d4b" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "d001f3a0-3eb7-4362-9c87-a4b25ad05d9f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041126Z:d001f3a0-3eb7-4362-9c87-a4b25ad05d9f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b4456d22-cb63-4a48-b870-94f5fabc047e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:11:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b4456d22-cb63-4a48-b870-94f5fabc047e" - ], - "request-id": [ - "b4456d22-cb63-4a48-b870-94f5fabc047e" - ], - "elapsed-time": [ - "413" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "ad1656a3-b653-455e-963d-48b8378820ef" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041137Z:ad1656a3-b653-455e-963d-48b8378820ef" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "963e3cfc-6203-4511-949a-58e97f7689b7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:11:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "963e3cfc-6203-4511-949a-58e97f7689b7" - ], - "request-id": [ - "963e3cfc-6203-4511-949a-58e97f7689b7" - ], - "elapsed-time": [ - "248" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "4a4d4920-a3e0-46d3-bb91-8cb88d062b4d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041147Z:4a4d4920-a3e0-46d3-bb91-8cb88d062b4d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8038341d-945b-4ce6-b3d8-cb44eeb7e881" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:11:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8038341d-945b-4ce6-b3d8-cb44eeb7e881" - ], - "request-id": [ - "8038341d-945b-4ce6-b3d8-cb44eeb7e881" - ], - "elapsed-time": [ - "129" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "407121fa-bc00-4263-8de3-f94b5292ce35" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041158Z:407121fa-bc00-4263-8de3-f94b5292ce35" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d505ca2f-bcee-4f2c-b309-5d25a5f14b79" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:12:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d505ca2f-bcee-4f2c-b309-5d25a5f14b79" - ], - "request-id": [ - "d505ca2f-bcee-4f2c-b309-5d25a5f14b79" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "cbc22336-b736-4b7c-8d18-f2e68e02a389" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041208Z:cbc22336-b736-4b7c-8d18-f2e68e02a389" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6d23f326-7f04-4449-b714-ed48ba33dfa6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:12:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6d23f326-7f04-4449-b714-ed48ba33dfa6" - ], - "request-id": [ - "6d23f326-7f04-4449-b714-ed48ba33dfa6" - ], - "elapsed-time": [ - "451" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "d81f071c-8987-493d-b9a3-d3c51f500839" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041219Z:d81f071c-8987-493d-b9a3-d3c51f500839" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aad2ea6e-9c39-4a3f-829e-7743a86de5ad" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:12:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "aad2ea6e-9c39-4a3f-829e-7743a86de5ad" - ], - "request-id": [ - "aad2ea6e-9c39-4a3f-829e-7743a86de5ad" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "35148b94-eb8e-4648-82d8-eda1e2ad769f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041229Z:35148b94-eb8e-4648-82d8-eda1e2ad769f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "07c6351a-54ee-4b34-9a29-ccc0ecb6728f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:12:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "07c6351a-54ee-4b34-9a29-ccc0ecb6728f" - ], - "request-id": [ - "07c6351a-54ee-4b34-9a29-ccc0ecb6728f" - ], - "elapsed-time": [ - "158" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "2712d384-ba33-4793-9284-8910d41a7c7c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041240Z:2712d384-ba33-4793-9284-8910d41a7c7c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f4eaed3d-ed40-495e-ac6a-e8b92f41fe90" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:12:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f4eaed3d-ed40-495e-ac6a-e8b92f41fe90" - ], - "request-id": [ - "f4eaed3d-ed40-495e-ac6a-e8b92f41fe90" - ], - "elapsed-time": [ - "238" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "7b88fd69-679e-4dc0-b11f-dbce86c94ae8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041250Z:7b88fd69-679e-4dc0-b11f-dbce86c94ae8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "81b7b94a-1ad2-4b78-b0c8-f04a73e93f27" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:13:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "81b7b94a-1ad2-4b78-b0c8-f04a73e93f27" - ], - "request-id": [ - "81b7b94a-1ad2-4b78-b0c8-f04a73e93f27" - ], - "elapsed-time": [ - "84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-correlation-request-id": [ - "a7d03287-3e38-4513-9f1e-538a0a6bff94" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041300Z:a7d03287-3e38-4513-9f1e-538a0a6bff94" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1521f070-be0e-4e53-a3c2-aeb40456cd9d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:13:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1521f070-be0e-4e53-a3c2-aeb40456cd9d" - ], - "request-id": [ - "1521f070-be0e-4e53-a3c2-aeb40456cd9d" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], - "x-ms-correlation-request-id": [ - "97fd3ad7-926f-4611-8873-9e3826c76684" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041311Z:97fd3ad7-926f-4611-8873-9e3826c76684" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2680b330-02f0-49d7-9794-1855e85efa2b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:13:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2680b330-02f0-49d7-9794-1855e85efa2b" - ], - "request-id": [ - "2680b330-02f0-49d7-9794-1855e85efa2b" - ], - "elapsed-time": [ - "201" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-correlation-request-id": [ - "d4f4ea52-beb1-48f9-9bd7-e14ec642a600" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041321Z:d4f4ea52-beb1-48f9-9bd7-e14ec642a600" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb163794-38a0-4d31-af76-4f8db76978d3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:13:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "eb163794-38a0-4d31-af76-4f8db76978d3" - ], - "request-id": [ - "eb163794-38a0-4d31-af76-4f8db76978d3" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "17fefc81-d908-4abd-a16b-8144e0f32cb7" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041332Z:17fefc81-d908-4abd-a16b-8144e0f32cb7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3e03505-22a6-46ae-947b-116b87dac281" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:13:41 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f3e03505-22a6-46ae-947b-116b87dac281" - ], - "request-id": [ - "f3e03505-22a6-46ae-947b-116b87dac281" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "e179b3a2-2403-420b-800f-c9318d6c924c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041342Z:e179b3a2-2403-420b-800f-c9318d6c924c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d7fdda9-891f-4143-a9c1-575014f41864" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:13:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7d7fdda9-891f-4143-a9c1-575014f41864" - ], - "request-id": [ - "7d7fdda9-891f-4143-a9c1-575014f41864" - ], - "elapsed-time": [ - "204" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" - ], - "x-ms-correlation-request-id": [ - "9b2e9392-10fb-4c5e-b50e-2acff0a9d9f7" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041353Z:9b2e9392-10fb-4c5e-b50e-2acff0a9d9f7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "65c51286-ee80-47d7-af1d-ab1623c974c8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:14:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "65c51286-ee80-47d7-af1d-ab1623c974c8" - ], - "request-id": [ - "65c51286-ee80-47d7-af1d-ab1623c974c8" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" - ], - "x-ms-correlation-request-id": [ - "53845e5f-97a0-4750-bd33-8b61e1f1cdff" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041403Z:53845e5f-97a0-4750-bd33-8b61e1f1cdff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "87146662-d7c6-4bef-a256-ef21634f5671" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:14:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "87146662-d7c6-4bef-a256-ef21634f5671" - ], - "request-id": [ - "87146662-d7c6-4bef-a256-ef21634f5671" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" - ], - "x-ms-correlation-request-id": [ - "aa799b07-0379-4265-b534-1beca692d8a4" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041413Z:aa799b07-0379-4265-b534-1beca692d8a4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d55cb2cf-fe13-4446-80ae-aa0a063d14a2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:14:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d55cb2cf-fe13-4446-80ae-aa0a063d14a2" - ], - "request-id": [ - "d55cb2cf-fe13-4446-80ae-aa0a063d14a2" - ], - "elapsed-time": [ - "146" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" - ], - "x-ms-correlation-request-id": [ - "cd222519-ed2c-4462-a639-c2ce8ec317e9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041424Z:cd222519-ed2c-4462-a639-c2ce8ec317e9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba3d1f52-8ce8-4c29-a634-8a3b04db01df" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:14:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ba3d1f52-8ce8-4c29-a634-8a3b04db01df" - ], - "request-id": [ - "ba3d1f52-8ce8-4c29-a634-8a3b04db01df" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" - ], - "x-ms-correlation-request-id": [ - "c97bf2c8-7ce4-42e1-b467-d08d652e5dd7" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041434Z:c97bf2c8-7ce4-42e1-b467-d08d652e5dd7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c611042f-7e16-4f45-ad08-3691d2bb7abf" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:14:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c611042f-7e16-4f45-ad08-3691d2bb7abf" - ], - "request-id": [ - "c611042f-7e16-4f45-ad08-3691d2bb7abf" - ], - "elapsed-time": [ - "119" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" - ], - "x-ms-correlation-request-id": [ - "46761155-2dc3-4cf9-908f-1550b22fbd99" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041445Z:46761155-2dc3-4cf9-908f-1550b22fbd99" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "39f84e85-0d79-4119-be05-88244f62b812" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:14:55 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "39f84e85-0d79-4119-be05-88244f62b812" - ], - "request-id": [ - "39f84e85-0d79-4119-be05-88244f62b812" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "b4332046-a1f4-44f2-a0ec-46a002c07ba9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041455Z:b4332046-a1f4-44f2-a0ec-46a002c07ba9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ce7d35fd-74d1-4d5c-b64a-568cc10f1ca2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:15:05 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ce7d35fd-74d1-4d5c-b64a-568cc10f1ca2" - ], - "request-id": [ - "ce7d35fd-74d1-4d5c-b64a-568cc10f1ca2" - ], - "elapsed-time": [ - "84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" - ], - "x-ms-correlation-request-id": [ - "a816ef32-c673-4d11-8ccc-f24b837f6c5f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041506Z:a816ef32-c673-4d11-8ccc-f24b837f6c5f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "196d1fc8-dbd5-4f49-b31b-9981b65b0057" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:15:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "196d1fc8-dbd5-4f49-b31b-9981b65b0057" - ], - "request-id": [ - "196d1fc8-dbd5-4f49-b31b-9981b65b0057" - ], - "elapsed-time": [ - "83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" - ], - "x-ms-correlation-request-id": [ - "dd3c5881-2fae-41bc-b509-b85e9c44ac13" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041516Z:dd3c5881-2fae-41bc-b509-b85e9c44ac13" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a243858-0cbb-4672-af68-b4c408ccc00a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:15:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0a243858-0cbb-4672-af68-b4c408ccc00a" - ], - "request-id": [ - "0a243858-0cbb-4672-af68-b4c408ccc00a" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" - ], - "x-ms-correlation-request-id": [ - "a93aa2c9-55b6-4f3a-9bf5-c213c17ec18f" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041526Z:a93aa2c9-55b6-4f3a-9bf5-c213c17ec18f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ff825cff-8182-40b7-a156-5fec813280f2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:15:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ff825cff-8182-40b7-a156-5fec813280f2" - ], - "request-id": [ - "ff825cff-8182-40b7-a156-5fec813280f2" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" - ], - "x-ms-correlation-request-id": [ - "64dfbda6-fd62-4e32-8ff4-9d0cb5ab1c65" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041537Z:64dfbda6-fd62-4e32-8ff4-9d0cb5ab1c65" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6e52c9a-a84a-451f-b719-2cf6ed255e20" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:15:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f6e52c9a-a84a-451f-b719-2cf6ed255e20" - ], - "request-id": [ - "f6e52c9a-a84a-451f-b719-2cf6ed255e20" - ], - "elapsed-time": [ - "114" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" - ], - "x-ms-correlation-request-id": [ - "a1e31327-dda4-43e7-8651-f5913cd43738" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041547Z:a1e31327-dda4-43e7-8651-f5913cd43738" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc32c893-8fe5-47ca-9b4a-e16d21c3c835" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:15:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "cc32c893-8fe5-47ca-9b4a-e16d21c3c835" - ], - "request-id": [ - "cc32c893-8fe5-47ca-9b4a-e16d21c3c835" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-correlation-request-id": [ - "b2d7c315-981b-4249-a96d-59d74691473b" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041558Z:b2d7c315-981b-4249-a96d-59d74691473b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3a3747d5-d22a-4809-899e-a093759f5c83" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:16:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3a3747d5-d22a-4809-899e-a093759f5c83" - ], - "request-id": [ - "3a3747d5-d22a-4809-899e-a093759f5c83" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-correlation-request-id": [ - "5719aae2-1a03-4e43-a34d-fd1ba541edb4" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041608Z:5719aae2-1a03-4e43-a34d-fd1ba541edb4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4617e172-cd84-4af3-bc7f-daeb064ed77e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:16:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4617e172-cd84-4af3-bc7f-daeb064ed77e" - ], - "request-id": [ - "4617e172-cd84-4af3-bc7f-daeb064ed77e" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-correlation-request-id": [ - "88bf0e59-2735-4497-981a-5615f8608371" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041618Z:88bf0e59-2735-4497-981a-5615f8608371" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca0be3e2-0c78-4e18-b82e-4bf1f6d95159" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:16:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ca0be3e2-0c78-4e18-b82e-4bf1f6d95159" - ], - "request-id": [ - "ca0be3e2-0c78-4e18-b82e-4bf1f6d95159" - ], - "elapsed-time": [ - "212" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-correlation-request-id": [ - "c6872972-0759-4c02-88b4-58608481fd77" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041629Z:c6872972-0759-4c02-88b4-58608481fd77" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a76b8b1-9a38-4d16-8b8b-0c281fdcff80" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:16:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0a76b8b1-9a38-4d16-8b8b-0c281fdcff80" - ], - "request-id": [ - "0a76b8b1-9a38-4d16-8b8b-0c281fdcff80" - ], - "elapsed-time": [ - "114" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-correlation-request-id": [ - "1c9cb003-1aee-49a2-928d-ff7c1a19aba4" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041639Z:1c9cb003-1aee-49a2-928d-ff7c1a19aba4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "19b65987-2230-4e0f-959d-069394741afc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:16:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "19b65987-2230-4e0f-959d-069394741afc" - ], - "request-id": [ - "19b65987-2230-4e0f-959d-069394741afc" - ], - "elapsed-time": [ - "87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-correlation-request-id": [ - "90c08a29-e335-4d9f-8c69-a80752951208" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041650Z:90c08a29-e335-4d9f-8c69-a80752951208" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d8187a17-8668-4cfd-9f38-682cdbfa286e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:17:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d8187a17-8668-4cfd-9f38-682cdbfa286e" - ], - "request-id": [ - "d8187a17-8668-4cfd-9f38-682cdbfa286e" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-correlation-request-id": [ - "b0bd3b6b-9ba8-4ff2-ba3b-08f24d6e5ce8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041700Z:b0bd3b6b-9ba8-4ff2-ba3b-08f24d6e5ce8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08008e7e-61a7-4382-ae41-ca73545ad8bb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:17:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "08008e7e-61a7-4382-ae41-ca73545ad8bb" - ], - "request-id": [ - "08008e7e-61a7-4382-ae41-ca73545ad8bb" - ], - "elapsed-time": [ - "1460" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-correlation-request-id": [ - "ac53b9e9-e40c-450f-864c-eac99ef12169" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041712Z:ac53b9e9-e40c-450f-864c-eac99ef12169" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a64bba9-62a1-4420-bf83-e353de7c7576" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:17:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0a64bba9-62a1-4420-bf83-e353de7c7576" - ], - "request-id": [ - "0a64bba9-62a1-4420-bf83-e353de7c7576" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-correlation-request-id": [ - "73b8d54c-c9d1-440c-95f2-80c32cdc52cc" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041722Z:73b8d54c-c9d1-440c-95f2-80c32cdc52cc" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "db91b3a5-ac85-4524-a755-d5d384f4e4f4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:17:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "db91b3a5-ac85-4524-a755-d5d384f4e4f4" - ], - "request-id": [ - "db91b3a5-ac85-4524-a755-d5d384f4e4f4" - ], - "elapsed-time": [ - "232" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-correlation-request-id": [ - "0a0548b4-ee2a-425b-bbb2-59771a1523e7" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041733Z:0a0548b4-ee2a-425b-bbb2-59771a1523e7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f82fb420-f398-402f-a625-7c34443824d0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:17:43 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f82fb420-f398-402f-a625-7c34443824d0" - ], - "request-id": [ - "f82fb420-f398-402f-a625-7c34443824d0" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-correlation-request-id": [ - "711733f6-bf78-4de9-a2c9-7e28e5e6b97a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041743Z:711733f6-bf78-4de9-a2c9-7e28e5e6b97a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3c61bb43-8c97-4fd3-aa06-6aa1e59947c9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:17:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3c61bb43-8c97-4fd3-aa06-6aa1e59947c9" - ], - "request-id": [ - "3c61bb43-8c97-4fd3-aa06-6aa1e59947c9" - ], - "elapsed-time": [ - "128" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-correlation-request-id": [ - "f478bc73-7128-4e29-b4f6-c2159c4b4b65" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041754Z:f478bc73-7128-4e29-b4f6-c2159c4b4b65" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c6a1f78d-10aa-4acd-99a9-543d50ef0686" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:18:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c6a1f78d-10aa-4acd-99a9-543d50ef0686" - ], - "request-id": [ - "c6a1f78d-10aa-4acd-99a9-543d50ef0686" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "fd56a9f0-46da-4cf8-962b-1e4b76c85818" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041804Z:fd56a9f0-46da-4cf8-962b-1e4b76c85818" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f59e332-75ad-4372-9a12-d9483a5f58d3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:18:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3f59e332-75ad-4372-9a12-d9483a5f58d3" - ], - "request-id": [ - "3f59e332-75ad-4372-9a12-d9483a5f58d3" - ], - "elapsed-time": [ - "196" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-correlation-request-id": [ - "72bffa6e-6a5b-4bb6-a732-f75ba6d2e963" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041814Z:72bffa6e-6a5b-4bb6-a732-f75ba6d2e963" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ab43901b-c277-48ef-8982-5874651718bf" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:18:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ab43901b-c277-48ef-8982-5874651718bf" - ], - "request-id": [ - "ab43901b-c277-48ef-8982-5874651718bf" - ], - "elapsed-time": [ - "129" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-correlation-request-id": [ - "10c61ed0-582e-4f2e-8d99-c755de16c580" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041825Z:10c61ed0-582e-4f2e-8d99-c755de16c580" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ad006f44-63d7-4c19-882e-e4f5bddd3c7b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:18:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ad006f44-63d7-4c19-882e-e4f5bddd3c7b" - ], - "request-id": [ - "ad006f44-63d7-4c19-882e-e4f5bddd3c7b" - ], - "elapsed-time": [ - "628" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-correlation-request-id": [ - "d1302696-2221-487b-91fe-6993771e2f05" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041836Z:d1302696-2221-487b-91fe-6993771e2f05" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c0729646-ff91-46c2-94ec-50bafb05e97e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:18:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c0729646-ff91-46c2-94ec-50bafb05e97e" - ], - "request-id": [ - "c0729646-ff91-46c2-94ec-50bafb05e97e" - ], - "elapsed-time": [ - "84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-correlation-request-id": [ - "1bb41a8f-9ca7-4f14-a762-b79e709768bf" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041846Z:1bb41a8f-9ca7-4f14-a762-b79e709768bf" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5ef441a6-9dd1-4602-93a6-18fd94eb7686" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5546,7 +215,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:18:57 GMT" + "Wed, 13 Dec 2017 19:03:42 GMT" ], "Pragma": [ "no-cache" @@ -5555,20 +224,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5ef441a6-9dd1-4602-93a6-18fd94eb7686" + "584ceee3-d6fd-40f1-8f62-105ee575cdde" ], "request-id": [ - "5ef441a6-9dd1-4602-93a6-18fd94eb7686" + "584ceee3-d6fd-40f1-8f62-105ee575cdde" ], "elapsed-time": [ - "171" + "122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5577,35 +246,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14970" ], "x-ms-correlation-request-id": [ - "abf89623-c309-40da-bb42-063d5687c6e9" + "4e2f5e8f-f729-4a34-bebd-8811b59fab49" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041857Z:abf89623-c309-40da-bb42-063d5687c6e9" + "CENTRALUS:20171213T190342Z:4e2f5e8f-f729-4a34-bebd-8811b59fab49" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "09f20722-785a-46d1-a247-5ad0bfd30be2" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5617,7 +280,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:19:07 GMT" + "Wed, 13 Dec 2017 19:04:12 GMT" ], "Pragma": [ "no-cache" @@ -5626,20 +289,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "09f20722-785a-46d1-a247-5ad0bfd30be2" + "c6e66e53-3536-4974-bcf9-2684cf2b40ee" ], "request-id": [ - "09f20722-785a-46d1-a247-5ad0bfd30be2" + "c6e66e53-3536-4974-bcf9-2684cf2b40ee" ], "elapsed-time": [ - "76" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5648,35 +311,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14969" ], "x-ms-correlation-request-id": [ - "a5fcd31f-15ed-4e3b-b4df-b0e1ff206375" + "44753c94-269f-4d88-81e1-0254c0217bb9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041907Z:a5fcd31f-15ed-4e3b-b4df-b0e1ff206375" + "CENTRALUS:20171213T190412Z:44753c94-269f-4d88-81e1-0254c0217bb9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ffaafe72-0c5c-430c-8c4f-93eabaaf9e88" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5688,7 +345,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:19:30 GMT" + "Wed, 13 Dec 2017 19:04:44 GMT" ], "Pragma": [ "no-cache" @@ -5697,20 +354,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ffaafe72-0c5c-430c-8c4f-93eabaaf9e88" + "efab8abd-f3a8-4560-93d0-203d043f3f52" ], "request-id": [ - "ffaafe72-0c5c-430c-8c4f-93eabaaf9e88" + "efab8abd-f3a8-4560-93d0-203d043f3f52" ], "elapsed-time": [ - "119" + "1512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5719,35 +376,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14968" ], "x-ms-correlation-request-id": [ - "caec9b15-c135-4d40-89c6-42129569c0a9" + "235bd28c-655b-4184-8128-f17502ae5e2e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041930Z:caec9b15-c135-4d40-89c6-42129569c0a9" + "CENTRALUS:20171213T190444Z:235bd28c-655b-4184-8128-f17502ae5e2e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5b38a2c8-9329-419e-9074-8d81601d83f7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5759,7 +410,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:19:39 GMT" + "Wed, 13 Dec 2017 19:05:14 GMT" ], "Pragma": [ "no-cache" @@ -5768,20 +419,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5b38a2c8-9329-419e-9074-8d81601d83f7" + "be30e402-4b76-4d08-947d-abfee6907988" ], "request-id": [ - "5b38a2c8-9329-419e-9074-8d81601d83f7" + "be30e402-4b76-4d08-947d-abfee6907988" ], "elapsed-time": [ - "89" + "81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5790,35 +441,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14967" ], "x-ms-correlation-request-id": [ - "37c5b615-b2c4-409c-ac9d-ac74ccff32fc" + "3c7e1183-a041-421a-b983-6ca00a7881f8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041940Z:37c5b615-b2c4-409c-ac9d-ac74ccff32fc" + "CENTRALUS:20171213T190514Z:3c7e1183-a041-421a-b983-6ca00a7881f8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b0f9b03f-8923-4aae-8d42-e2c1f2d34f62" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5830,7 +475,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:19:50 GMT" + "Wed, 13 Dec 2017 19:05:44 GMT" ], "Pragma": [ "no-cache" @@ -5839,20 +484,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b0f9b03f-8923-4aae-8d42-e2c1f2d34f62" + "9048b588-27ac-4170-b100-a61e51559307" ], "request-id": [ - "b0f9b03f-8923-4aae-8d42-e2c1f2d34f62" + "9048b588-27ac-4170-b100-a61e51559307" ], "elapsed-time": [ - "158" + "468" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5861,35 +506,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14966" ], "x-ms-correlation-request-id": [ - "fb7d1203-d411-47a0-83a0-703c85bad420" + "c01e0d36-e57d-4e53-863f-2354e8317a4c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T041950Z:fb7d1203-d411-47a0-83a0-703c85bad420" + "CENTRALUS:20171213T190545Z:c01e0d36-e57d-4e53-863f-2354e8317a4c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3e436b40-fddf-4d38-a626-0de017cd7fd2" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5901,7 +540,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:20:00 GMT" + "Wed, 13 Dec 2017 19:06:14 GMT" ], "Pragma": [ "no-cache" @@ -5910,20 +549,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3e436b40-fddf-4d38-a626-0de017cd7fd2" + "f55d3427-d207-465e-a414-5d84ba43b7f0" ], "request-id": [ - "3e436b40-fddf-4d38-a626-0de017cd7fd2" + "f55d3427-d207-465e-a414-5d84ba43b7f0" ], "elapsed-time": [ - "67" + "64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5932,35 +571,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14965" ], "x-ms-correlation-request-id": [ - "e226a0ca-0103-4d06-8158-2f7c54c7dc0c" + "6a9883b1-f067-4304-ac0f-a853d9dbd0ec" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042001Z:e226a0ca-0103-4d06-8158-2f7c54c7dc0c" + "CENTRALUS:20171213T190615Z:6a9883b1-f067-4304-ac0f-a853d9dbd0ec" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b85fc632-78af-489c-819c-04edc354b494" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5972,7 +605,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:20:10 GMT" + "Wed, 13 Dec 2017 19:06:44 GMT" ], "Pragma": [ "no-cache" @@ -5981,20 +614,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b85fc632-78af-489c-819c-04edc354b494" + "1be191d0-f807-4b8f-8d5b-6cf535193c41" ], "request-id": [ - "b85fc632-78af-489c-819c-04edc354b494" + "1be191d0-f807-4b8f-8d5b-6cf535193c41" ], "elapsed-time": [ - "80" + "174" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6003,35 +636,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14964" ], "x-ms-correlation-request-id": [ - "96c61dc6-b7dd-47f8-b1ad-1c09fe8d605f" + "85eb41db-5a52-42d9-81f7-039b8f9e0f0d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042011Z:96c61dc6-b7dd-47f8-b1ad-1c09fe8d605f" + "CENTRALUS:20171213T190645Z:85eb41db-5a52-42d9-81f7-039b8f9e0f0d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e7ab6257-31b1-4130-ad86-290daa8355cf" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6043,7 +670,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:20:21 GMT" + "Wed, 13 Dec 2017 19:07:15 GMT" ], "Pragma": [ "no-cache" @@ -6052,17 +679,17 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e7ab6257-31b1-4130-ad86-290daa8355cf" + "82794c33-7a08-40e7-bbe1-67da07fcaa14" ], "request-id": [ - "e7ab6257-31b1-4130-ad86-290daa8355cf" + "82794c33-7a08-40e7-bbe1-67da07fcaa14" ], "elapsed-time": [ "241" @@ -6074,106 +701,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "bf759f9c-53f2-4887-b8fd-bdcad11d13c8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042022Z:bf759f9c-53f2-4887-b8fd-bdcad11d13c8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1bd082c4-8f6e-44bf-8134-be118f2f51e1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:20:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1bd082c4-8f6e-44bf-8134-be118f2f51e1" - ], - "request-id": [ - "1bd082c4-8f6e-44bf-8134-be118f2f51e1" - ], - "elapsed-time": [ - "82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14963" ], "x-ms-correlation-request-id": [ - "0ec65327-54f7-45a0-88f3-0e6cd7ac0458" + "e61a29a4-925c-4fc8-a4ab-695946f01624" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042032Z:0ec65327-54f7-45a0-88f3-0e6cd7ac0458" + "CENTRALUS:20171213T190716Z:e61a29a4-925c-4fc8-a4ab-695946f01624" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "15dc1092-1176-474b-973b-5a7906a8c4ac" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6185,7 +735,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:20:43 GMT" + "Wed, 13 Dec 2017 19:07:45 GMT" ], "Pragma": [ "no-cache" @@ -6194,20 +744,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "15dc1092-1176-474b-973b-5a7906a8c4ac" + "f5c825c8-a5d1-423a-b981-93d921a40579" ], "request-id": [ - "15dc1092-1176-474b-973b-5a7906a8c4ac" + "f5c825c8-a5d1-423a-b981-93d921a40579" ], "elapsed-time": [ - "837" + "254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6216,35 +766,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14962" ], "x-ms-correlation-request-id": [ - "7e82ca8c-133d-439f-98b4-94e8abdf4007" + "fec3acaf-ffcd-4477-a013-e473fe116742" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042043Z:7e82ca8c-133d-439f-98b4-94e8abdf4007" + "CENTRALUS:20171213T190746Z:fec3acaf-ffcd-4477-a013-e473fe116742" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8f7f2fd3-ec2e-4f1a-9a05-2698addfc569" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6256,7 +800,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:20:54 GMT" + "Wed, 13 Dec 2017 19:08:16 GMT" ], "Pragma": [ "no-cache" @@ -6265,20 +809,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8f7f2fd3-ec2e-4f1a-9a05-2698addfc569" + "562c78e0-bdab-4b6d-94c8-c6abf9d3a661" ], "request-id": [ - "8f7f2fd3-ec2e-4f1a-9a05-2698addfc569" + "562c78e0-bdab-4b6d-94c8-c6abf9d3a661" ], "elapsed-time": [ - "175" + "86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6287,35 +831,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14961" ], "x-ms-correlation-request-id": [ - "c74d39f9-546e-40e8-ba87-97d1709e4651" + "d972543a-dfcf-487a-a76d-502780975fa2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042054Z:c74d39f9-546e-40e8-ba87-97d1709e4651" + "CENTRALUS:20171213T190816Z:d972543a-dfcf-487a-a76d-502780975fa2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2547e774-e1dd-41b9-8c63-2f9fd95422d3" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6327,7 +865,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:21:04 GMT" + "Wed, 13 Dec 2017 19:08:46 GMT" ], "Pragma": [ "no-cache" @@ -6336,20 +874,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2547e774-e1dd-41b9-8c63-2f9fd95422d3" + "6141bb72-5adc-40b3-9331-0be561cc305d" ], "request-id": [ - "2547e774-e1dd-41b9-8c63-2f9fd95422d3" + "6141bb72-5adc-40b3-9331-0be561cc305d" ], "elapsed-time": [ - "78" + "290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6358,35 +896,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14960" ], "x-ms-correlation-request-id": [ - "4333f335-a900-4fac-9b4f-413b26ecb85e" + "d45dadb8-5613-4de1-96e0-b01656ee190a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042104Z:4333f335-a900-4fac-9b4f-413b26ecb85e" + "CENTRALUS:20171213T190847Z:d45dadb8-5613-4de1-96e0-b01656ee190a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "98751ce0-6c31-4c3b-9634-b0619c6842e8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6398,7 +930,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:21:14 GMT" + "Wed, 13 Dec 2017 19:09:20 GMT" ], "Pragma": [ "no-cache" @@ -6407,20 +939,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "98751ce0-6c31-4c3b-9634-b0619c6842e8" + "723f44c8-347b-4dfa-9a12-692c556152b0" ], "request-id": [ - "98751ce0-6c31-4c3b-9634-b0619c6842e8" + "723f44c8-347b-4dfa-9a12-692c556152b0" ], "elapsed-time": [ - "102" + "2765" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6429,35 +961,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14959" ], "x-ms-correlation-request-id": [ - "70e40c43-2321-4096-8a9c-bb9f9a061d54" + "1fc3aef6-bf69-4216-94c5-a3acda1dd05e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042115Z:70e40c43-2321-4096-8a9c-bb9f9a061d54" + "CENTRALUS:20171213T190920Z:1fc3aef6-bf69-4216-94c5-a3acda1dd05e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "37ed03fb-c607-4174-9971-76e8b2c97c76" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6469,7 +995,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:21:24 GMT" + "Wed, 13 Dec 2017 19:09:49 GMT" ], "Pragma": [ "no-cache" @@ -6478,20 +1004,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "37ed03fb-c607-4174-9971-76e8b2c97c76" + "2ba01c2d-ab8d-4f44-8400-37d5a0cd78cb" ], "request-id": [ - "37ed03fb-c607-4174-9971-76e8b2c97c76" + "2ba01c2d-ab8d-4f44-8400-37d5a0cd78cb" ], "elapsed-time": [ - "76" + "269" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6500,35 +1026,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14958" ], "x-ms-correlation-request-id": [ - "29b4b747-0d9e-40c0-8dea-f24e9452e7b8" + "34bca12b-199f-4095-b8d6-904e121bc1e7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042125Z:29b4b747-0d9e-40c0-8dea-f24e9452e7b8" + "CENTRALUS:20171213T190950Z:34bca12b-199f-4095-b8d6-904e121bc1e7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f0f1f498-9cd0-407c-81e7-d86eed642094" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6540,7 +1060,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:21:35 GMT" + "Wed, 13 Dec 2017 19:10:21 GMT" ], "Pragma": [ "no-cache" @@ -6549,20 +1069,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f0f1f498-9cd0-407c-81e7-d86eed642094" + "166a40c1-5020-4548-915b-c639eec6caab" ], "request-id": [ - "f0f1f498-9cd0-407c-81e7-d86eed642094" + "166a40c1-5020-4548-915b-c639eec6caab" ], "elapsed-time": [ - "107" + "191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6571,35 +1091,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14957" ], "x-ms-correlation-request-id": [ - "c6d3e548-c9aa-4b7d-8269-53aecb918d77" + "fbf1b82b-a6a2-4292-8c3c-8ff9a3e07f5f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042135Z:c6d3e548-c9aa-4b7d-8269-53aecb918d77" + "CENTRALUS:20171213T191021Z:fbf1b82b-a6a2-4292-8c3c-8ff9a3e07f5f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5553b211-5635-491e-92c8-99c538784aa9" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6611,7 +1125,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:21:46 GMT" + "Wed, 13 Dec 2017 19:10:50 GMT" ], "Pragma": [ "no-cache" @@ -6620,20 +1134,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5553b211-5635-491e-92c8-99c538784aa9" + "bb36331d-1a86-4e14-b15e-24676bb4039b" ], "request-id": [ - "5553b211-5635-491e-92c8-99c538784aa9" + "bb36331d-1a86-4e14-b15e-24676bb4039b" ], "elapsed-time": [ - "81" + "74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6642,35 +1156,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14956" ], "x-ms-correlation-request-id": [ - "39be85d2-700e-4778-8fb2-16b765e28048" + "ea2dbb48-fae2-49c9-8eaa-40a753970b5e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042146Z:39be85d2-700e-4778-8fb2-16b765e28048" + "CENTRALUS:20171213T191051Z:ea2dbb48-fae2-49c9-8eaa-40a753970b5e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eff06f30-5bfc-4999-8e1e-ef12b4d8c1e1" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6682,7 +1190,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:21:56 GMT" + "Wed, 13 Dec 2017 19:11:21 GMT" ], "Pragma": [ "no-cache" @@ -6691,20 +1199,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "eff06f30-5bfc-4999-8e1e-ef12b4d8c1e1" + "41daef75-5e40-46d6-8f3c-b12852cbd45c" ], "request-id": [ - "eff06f30-5bfc-4999-8e1e-ef12b4d8c1e1" + "41daef75-5e40-46d6-8f3c-b12852cbd45c" ], "elapsed-time": [ - "77" + "59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6713,35 +1221,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14955" ], "x-ms-correlation-request-id": [ - "9532a021-a775-4b29-81e8-1666ec94c80c" + "a716139d-8cca-4d42-9be4-0e0131674f4a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042156Z:9532a021-a775-4b29-81e8-1666ec94c80c" + "CENTRALUS:20171213T191121Z:a716139d-8cca-4d42-9be4-0e0131674f4a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68bc0cce-2bb7-44e5-b264-5278f2618d3e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6753,7 +1255,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:22:06 GMT" + "Wed, 13 Dec 2017 19:11:51 GMT" ], "Pragma": [ "no-cache" @@ -6762,20 +1264,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "68bc0cce-2bb7-44e5-b264-5278f2618d3e" + "615c6203-a64e-44fc-898f-bd09abc79595" ], "request-id": [ - "68bc0cce-2bb7-44e5-b264-5278f2618d3e" + "615c6203-a64e-44fc-898f-bd09abc79595" ], "elapsed-time": [ - "66" + "100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6784,35 +1286,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14954" ], "x-ms-correlation-request-id": [ - "f0301d64-a283-4560-9864-c8b442fbede1" + "c25be26c-8dc0-4ad8-b1af-4faecac15410" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042207Z:f0301d64-a283-4560-9864-c8b442fbede1" + "CENTRALUS:20171213T191151Z:c25be26c-8dc0-4ad8-b1af-4faecac15410" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9b68bfc0-7423-4127-8e7a-f4736f39b4fb" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6824,7 +1320,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:22:16 GMT" + "Wed, 13 Dec 2017 19:12:21 GMT" ], "Pragma": [ "no-cache" @@ -6833,20 +1329,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9b68bfc0-7423-4127-8e7a-f4736f39b4fb" + "6aeb6b96-37a8-4cfa-8840-e7f9675d9506" ], "request-id": [ - "9b68bfc0-7423-4127-8e7a-f4736f39b4fb" + "6aeb6b96-37a8-4cfa-8840-e7f9675d9506" ], "elapsed-time": [ - "85" + "124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6855,35 +1351,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14953" ], "x-ms-correlation-request-id": [ - "27c10b1c-56ad-486c-afb7-3c950399e906" + "a45ee65e-5980-4d43-a638-4875a7fe495a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042217Z:27c10b1c-56ad-486c-afb7-3c950399e906" + "CENTRALUS:20171213T191221Z:a45ee65e-5980-4d43-a638-4875a7fe495a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "01b39d22-e228-4850-9b9c-6da8977c9846" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6895,7 +1385,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:22:27 GMT" + "Wed, 13 Dec 2017 19:12:51 GMT" ], "Pragma": [ "no-cache" @@ -6904,20 +1394,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "01b39d22-e228-4850-9b9c-6da8977c9846" + "21d0f1fc-a131-4bff-aacc-d1dd7b860ff6" ], "request-id": [ - "01b39d22-e228-4850-9b9c-6da8977c9846" + "21d0f1fc-a131-4bff-aacc-d1dd7b860ff6" ], "elapsed-time": [ - "81" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6926,35 +1416,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14952" ], "x-ms-correlation-request-id": [ - "2eb997bb-ffa1-4eda-aa88-654c0fa19c13" + "7be901a5-91b4-43e5-b831-c9f38020b06a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042227Z:2eb997bb-ffa1-4eda-aa88-654c0fa19c13" + "CENTRALUS:20171213T191252Z:7be901a5-91b4-43e5-b831-c9f38020b06a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "557d7b62-bf40-45d4-a0d5-a2e201c2e1bd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -6966,7 +1450,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:22:38 GMT" + "Wed, 13 Dec 2017 19:13:21 GMT" ], "Pragma": [ "no-cache" @@ -6975,20 +1459,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "557d7b62-bf40-45d4-a0d5-a2e201c2e1bd" + "fdbb604c-74bf-46ec-98fc-45e83fbf54e3" ], "request-id": [ - "557d7b62-bf40-45d4-a0d5-a2e201c2e1bd" + "fdbb604c-74bf-46ec-98fc-45e83fbf54e3" ], "elapsed-time": [ - "82" + "72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6997,35 +1481,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14951" ], "x-ms-correlation-request-id": [ - "60828b7b-b894-44df-a46f-1e0ce95938bd" + "65190965-0617-45aa-baf4-c2ccefe223d0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042238Z:60828b7b-b894-44df-a46f-1e0ce95938bd" + "CENTRALUS:20171213T191322Z:65190965-0617-45aa-baf4-c2ccefe223d0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f549e097-31b2-4f80-aad6-480075581e1f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7037,7 +1515,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:22:48 GMT" + "Wed, 13 Dec 2017 19:13:52 GMT" ], "Pragma": [ "no-cache" @@ -7046,20 +1524,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f549e097-31b2-4f80-aad6-480075581e1f" + "6c07dc52-7af7-4605-840d-63d03a128e5d" ], "request-id": [ - "f549e097-31b2-4f80-aad6-480075581e1f" + "6c07dc52-7af7-4605-840d-63d03a128e5d" ], "elapsed-time": [ - "65" + "99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7068,35 +1546,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14950" ], "x-ms-correlation-request-id": [ - "289cbc6c-937f-4442-83d1-adcd8491a558" + "86ff0c19-8fe0-49a7-be03-146becc9fc5a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042248Z:289cbc6c-937f-4442-83d1-adcd8491a558" + "CENTRALUS:20171213T191352Z:86ff0c19-8fe0-49a7-be03-146becc9fc5a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "84fc259e-1387-407a-9f8b-b57459e29f7f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7108,7 +1580,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:22:58 GMT" + "Wed, 13 Dec 2017 19:14:22 GMT" ], "Pragma": [ "no-cache" @@ -7117,20 +1589,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "84fc259e-1387-407a-9f8b-b57459e29f7f" + "40f7a75b-3564-4f5e-ae90-0e42956818c2" ], "request-id": [ - "84fc259e-1387-407a-9f8b-b57459e29f7f" + "40f7a75b-3564-4f5e-ae90-0e42956818c2" ], "elapsed-time": [ - "71" + "75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7139,35 +1611,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14949" ], "x-ms-correlation-request-id": [ - "39fec28c-1603-4072-817c-ef3ee662e8c8" + "1fe0b02f-6d0a-4d20-b066-b08f62cd4288" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042259Z:39fec28c-1603-4072-817c-ef3ee662e8c8" + "CENTRALUS:20171213T191422Z:1fe0b02f-6d0a-4d20-b066-b08f62cd4288" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "acaa0335-02df-493c-bf47-5e8afac39527" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7179,7 +1645,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:23:08 GMT" + "Wed, 13 Dec 2017 19:14:52 GMT" ], "Pragma": [ "no-cache" @@ -7188,20 +1654,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "acaa0335-02df-493c-bf47-5e8afac39527" + "a92f585c-bb70-48d9-9fff-577ee12179ce" ], "request-id": [ - "acaa0335-02df-493c-bf47-5e8afac39527" + "a92f585c-bb70-48d9-9fff-577ee12179ce" ], "elapsed-time": [ - "103" + "79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7210,35 +1676,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14948" ], "x-ms-correlation-request-id": [ - "37366b35-f296-48c5-81de-88498aceddf7" + "9b3cb25f-7147-49f5-9349-47045e020944" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042309Z:37366b35-f296-48c5-81de-88498aceddf7" + "CENTRALUS:20171213T191452Z:9b3cb25f-7147-49f5-9349-47045e020944" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a9d152d1-603f-4d4d-b072-53377ecdb98a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7250,7 +1710,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:23:19 GMT" + "Wed, 13 Dec 2017 19:15:23 GMT" ], "Pragma": [ "no-cache" @@ -7259,20 +1719,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a9d152d1-603f-4d4d-b072-53377ecdb98a" + "04070def-edbd-4df9-a564-8da53c6c2477" ], "request-id": [ - "a9d152d1-603f-4d4d-b072-53377ecdb98a" + "04070def-edbd-4df9-a564-8da53c6c2477" ], "elapsed-time": [ - "85" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7281,35 +1741,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14947" ], "x-ms-correlation-request-id": [ - "1cd42533-7f8f-4f43-a6b9-4035ded0ca22" + "6b62bf0c-9297-4b97-91b3-3fecaad9c122" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042319Z:1cd42533-7f8f-4f43-a6b9-4035ded0ca22" + "CENTRALUS:20171213T191523Z:6b62bf0c-9297-4b97-91b3-3fecaad9c122" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "80ea369f-091a-457a-b1f4-dde6bfaf8935" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7321,7 +1775,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:23:30 GMT" + "Wed, 13 Dec 2017 19:15:52 GMT" ], "Pragma": [ "no-cache" @@ -7330,20 +1784,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "80ea369f-091a-457a-b1f4-dde6bfaf8935" + "2f469cb2-4ebd-44f6-85e4-9f1936b77cc3" ], "request-id": [ - "80ea369f-091a-457a-b1f4-dde6bfaf8935" + "2f469cb2-4ebd-44f6-85e4-9f1936b77cc3" ], "elapsed-time": [ - "73" + "139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7352,35 +1806,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14946" ], "x-ms-correlation-request-id": [ - "b21e9445-6f4b-47f2-9ed4-cf8a03474efb" + "70e7d6c7-8f46-421b-b1fd-9fe568e6d250" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042330Z:b21e9445-6f4b-47f2-9ed4-cf8a03474efb" + "CENTRALUS:20171213T191553Z:70e7d6c7-8f46-421b-b1fd-9fe568e6d250" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2e1cb149-12c9-4f2d-94d7-66a4dbb3200e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7392,7 +1840,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:23:40 GMT" + "Wed, 13 Dec 2017 19:16:22 GMT" ], "Pragma": [ "no-cache" @@ -7401,20 +1849,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2e1cb149-12c9-4f2d-94d7-66a4dbb3200e" + "7fdda531-80f5-4084-b386-6b7ea516e18a" ], "request-id": [ - "2e1cb149-12c9-4f2d-94d7-66a4dbb3200e" + "7fdda531-80f5-4084-b386-6b7ea516e18a" ], "elapsed-time": [ - "139" + "89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7423,35 +1871,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14945" ], "x-ms-correlation-request-id": [ - "eff5678e-7971-4c21-9c1e-3a83984e762b" + "dcf6e583-03d2-4264-a1ea-1605091cfa9e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042340Z:eff5678e-7971-4c21-9c1e-3a83984e762b" + "CENTRALUS:20171213T191623Z:dcf6e583-03d2-4264-a1ea-1605091cfa9e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68cca19e-e100-44b4-bfb8-c76a2b286ed6" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750\",\"name\":\"azs-6750\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -7463,7 +1905,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:23:50 GMT" + "Wed, 13 Dec 2017 19:16:53 GMT" ], "Pragma": [ "no-cache" @@ -7472,20 +1914,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A05%3A41.8811095Z'\"" + "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "68cca19e-e100-44b4-bfb8-c76a2b286ed6" + "95f93f24-8579-4d9f-bf38-31f948d38254" ], "request-id": [ - "68cca19e-e100-44b4-bfb8-c76a2b286ed6" + "95f93f24-8579-4d9f-bf38-31f948d38254" ], "elapsed-time": [ - "121" + "212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7494,31 +1936,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14944" ], "x-ms-correlation-request-id": [ - "d69ee8d9-6ed9-4c4b-b7b6-5a1dcb2b488d" + "9d784d2d-87c3-43b1-83f9-44b3fbc9e840" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042351Z:d69ee8d9-6ed9-4c4b-b7b6-5a1dcb2b488d" + "CENTRALUS:20171213T191654Z:9d784d2d-87c3-43b1-83f9-44b3fbc9e840" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2265/providers/Microsoft.Search/searchServices/azs-6750?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NzUwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c11f3ef1-575e-481b-8564-5849762b86dd" + "59cc280b-d289-4c84-8e51-a1411cfa1b64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -7534,19 +1976,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:23:54 GMT" + "Wed, 13 Dec 2017 19:16:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c11f3ef1-575e-481b-8564-5849762b86dd" + "59cc280b-d289-4c84-8e51-a1411cfa1b64" ], "request-id": [ - "c11f3ef1-575e-481b-8564-5849762b86dd" + "59cc280b-d289-4c84-8e51-a1411cfa1b64" ], "elapsed-time": [ - "2000" + "1618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7555,13 +1997,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1191" ], "x-ms-correlation-request-id": [ - "bcd5c38d-3055-4ab2-bf0b-11d0d7fd799a" + "f2eb81e5-8c25-413d-81b1-ee5793cc2d1a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042355Z:bcd5c38d-3055-4ab2-bf0b-11d0d7fd799a" + "CENTRALUS:20171213T191656Z:f2eb81e5-8c25-413d-81b1-ee5793cc2d1a" ] }, "StatusCode": 200 @@ -7569,10 +2011,10 @@ ], "Names": { "GenerateName": [ - "azsmnet2265" + "azsmnet7996" ], "GenerateServiceName": [ - "azs-6750" + "azs-4583" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json index 8626c071806c9..64cd7c0e70233 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f35fc66-f63d-4526-b8fc-f23dd111d6e7" + "da80b085-dc54-42b3-864c-f5b37434c5d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:00 GMT" + "Wed, 13 Dec 2017 06:37:20 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1115" ], "x-ms-request-id": [ - "56ababf2-8a56-4208-8a6c-3cdf4b0becfc" + "1730fabf-5691-43b0-b70a-309763773622" ], "x-ms-correlation-request-id": [ - "56ababf2-8a56-4208-8a6c-3cdf4b0becfc" + "1730fabf-5691-43b0-b70a-309763773622" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042400Z:56ababf2-8a56-4208-8a6c-3cdf4b0becfc" + "CENTRALUS:20171213T063720Z:1730fabf-5691-43b0-b70a-309763773622" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3589?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNTg5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8870?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "75654752-d417-45d8-a1bd-2b5e86bb7963" + "8db706f1-c0b3-4059-9eeb-14da1893f2c7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3589\",\r\n \"name\": \"azsmnet3589\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870\",\r\n \"name\": \"azsmnet8870\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:00 GMT" + "Wed, 13 Dec 2017 06:37:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1114" ], "x-ms-request-id": [ - "0da1178b-2313-4d2b-9076-b78f53428661" + "19c3798f-a9e7-4b06-b73f-c127ba7f328a" ], "x-ms-correlation-request-id": [ - "0da1178b-2313-4d2b-9076-b78f53428661" + "19c3798f-a9e7-4b06-b73f-c127ba7f328a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042401Z:0da1178b-2313-4d2b-9076-b78f53428661" + "CENTRALUS:20171213T063720Z:19c3798f-a9e7-4b06-b73f-c127ba7f328a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3589/providers/Microsoft.Search/searchServices/azs-1397?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzk3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870/providers/Microsoft.Search/searchServices/azs-4827?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODI3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "145" ], "x-ms-client-request-id": [ - "91c55ab9-9f49-433d-a9c3-fc32b0ba34f8" + "b7f65907-a1cc-4b91-af67-19f54ea81186" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3589/providers/Microsoft.Search/searchServices/azs-1397\",\"name\":\"azs-1397\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870/providers/Microsoft.Search/searchServices/azs-4827\",\"name\":\"azs-4827\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Length": [ "389" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:04 GMT" + "Wed, 13 Dec 2017 06:37:25 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A24%3A04.6471598Z'\"" + "W/\"datetime'2017-12-13T06%3A37%3A25.3048834Z'\"" ], "x-ms-request-id": [ - "91c55ab9-9f49-433d-a9c3-fc32b0ba34f8" + "b7f65907-a1cc-4b91-af67-19f54ea81186" ], "request-id": [ - "91c55ab9-9f49-433d-a9c3-fc32b0ba34f8" + "b7f65907-a1cc-4b91-af67-19f54ea81186" ], "elapsed-time": [ - "1135" + "3697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,31 +181,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1113" ], "x-ms-correlation-request-id": [ - "4b82f2bf-ff1b-4b00-bee4-df3303bd9fdf" + "ac987cca-c207-48f8-833d-031be58a6afc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042405Z:4b82f2bf-ff1b-4b00-bee4-df3303bd9fdf" + "CENTRALUS:20171213T063725Z:ac987cca-c207-48f8-833d-031be58a6afc" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3589/providers/Microsoft.Search/searchServices/azs-1397?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMzk3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870/providers/Microsoft.Search/searchServices/azs-4827?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODI3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ae0c2f-3246-435d-99ca-110f5e8bb435" + "b2de484b-b1bf-440a-b83a-ce1ce22b36bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:24:05 GMT" + "Wed, 13 Dec 2017 06:37:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e3ae0c2f-3246-435d-99ca-110f5e8bb435" + "b2de484b-b1bf-440a-b83a-ce1ce22b36bd" ], "request-id": [ - "e3ae0c2f-3246-435d-99ca-110f5e8bb435" + "b2de484b-b1bf-440a-b83a-ce1ce22b36bd" ], "elapsed-time": [ - "289" + "700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,13 +242,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1112" ], "x-ms-correlation-request-id": [ - "a4d313c5-fb10-45cb-96a6-3ee8d777fa6f" + "ecbdd6e5-ec45-4c81-a168-e8cd635b1f04" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T042406Z:a4d313c5-fb10-45cb-96a6-3ee8d777fa6f" + "CENTRALUS:20171213T063729Z:ecbdd6e5-ec45-4c81-a168-e8cd635b1f04" ] }, "StatusCode": 200 @@ -256,10 +256,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3589" + "azsmnet8870" ], "GenerateServiceName": [ - "azs-1397" + "azs-4827" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json index c53a95c0bfaf8..9a4e3605b29e4 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "808dd75a-042f-4972-b2ae-a08072e6ffce" + "3b068cf2-5e29-474b-bcbf-137ac147c307" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:15 GMT" + "Wed, 13 Dec 2017 05:56:34 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1149" ], "x-ms-request-id": [ - "c9d562aa-2d55-4ebb-a715-8e9ceeddb3fa" + "a1022b81-fbf5-4647-a0d4-ad0557ddc990" ], "x-ms-correlation-request-id": [ - "c9d562aa-2d55-4ebb-a715-8e9ceeddb3fa" + "a1022b81-fbf5-4647-a0d4-ad0557ddc990" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044115Z:c9d562aa-2d55-4ebb-a715-8e9ceeddb3fa" + "CENTRALUS:20171213T055634Z:a1022b81-fbf5-4647-a0d4-ad0557ddc990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6859?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2ODU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4538?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "df77ef75-a0a0-43cf-bd31-26e3ba5f15dc" + "898ddd00-89d0-4ded-bc99-9d260abe92c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859\",\r\n \"name\": \"azsmnet6859\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538\",\r\n \"name\": \"azsmnet4538\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:15 GMT" + "Wed, 13 Dec 2017 05:56:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1148" ], "x-ms-request-id": [ - "879baaa4-8b80-4c2b-905d-34877bc7d2a4" + "6326de63-4b34-4dc0-b63e-68060c334afd" ], "x-ms-correlation-request-id": [ - "879baaa4-8b80-4c2b-905d-34877bc7d2a4" + "6326de63-4b34-4dc0-b63e-68060c334afd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044116Z:879baaa4-8b80-4c2b-905d-34877bc7d2a4" + "CENTRALUS:20171213T055634Z:6326de63-4b34-4dc0-b63e-68060c334afd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices/azs-6502?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTAyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-4726?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NzI2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "141" ], "x-ms-client-request-id": [ - "99390460-88eb-4b86-a1ff-99f0f833582b" + "ea440bba-36d4-4715-8a5f-17cdc7ca00f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices/azs-6502\",\"name\":\"azs-6502\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-4726\",\"name\":\"azs-4726\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:21 GMT" + "Wed, 13 Dec 2017 05:56:36 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A20.5890349Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A36.543195Z'\"" ], "x-ms-request-id": [ - "99390460-88eb-4b86-a1ff-99f0f833582b" + "ea440bba-36d4-4715-8a5f-17cdc7ca00f7" ], "request-id": [ - "99390460-88eb-4b86-a1ff-99f0f833582b" + "ea440bba-36d4-4715-8a5f-17cdc7ca00f7" ], "elapsed-time": [ - "631" + "1057" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,20 +181,20 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1173" + "1147" ], "x-ms-correlation-request-id": [ - "7f0af06e-7164-4d1a-ae53-219e0fd296ac" + "bd72d2bc-fa5e-4bf3-a14c-cb752e0f36e2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044121Z:7f0af06e-7164-4d1a-ae53-219e0fd296ac" + "CENTRALUS:20171213T055636Z:bd72d2bc-fa5e-4bf3-a14c-cb752e0f36e2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices/azs-4285?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00Mjg1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-6302?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzAyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -205,17 +205,17 @@ "141" ], "x-ms-client-request-id": [ - "526ff878-08db-4da2-9efb-eaeb31dfcf9e" + "f9832421-00e3-4c6a-8602-680aa1fd95d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices/azs-4285\",\"name\":\"azs-4285\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-6302\",\"name\":\"azs-6302\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -230,22 +230,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:22 GMT" + "Wed, 13 Dec 2017 05:56:38 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A22.4137877Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A37.864466Z'\"" ], "x-ms-request-id": [ - "526ff878-08db-4da2-9efb-eaeb31dfcf9e" + "f9832421-00e3-4c6a-8602-680aa1fd95d0" ], "request-id": [ - "526ff878-08db-4da2-9efb-eaeb31dfcf9e" + "f9832421-00e3-4c6a-8602-680aa1fd95d0" ], "elapsed-time": [ - "482" + "1221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -254,35 +254,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1172" + "1146" ], "x-ms-correlation-request-id": [ - "1137e50f-e79c-4f35-964a-096ac58015d4" + "ace901e0-d012-475c-8ec0-d5a00986fed1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044122Z:1137e50f-e79c-4f35-964a-096ac58015d4" + "CENTRALUS:20171213T055638Z:ace901e0-d012-475c-8ec0-d5a00986fed1" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "993f8f81-68d9-4f9d-b78d-c2ead1f7212d" + "a4447500-4635-4de2-89e0-4d61e7e414ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices/azs-4285\",\"name\":\"azs-4285\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-05-09T04%3A41%3A22.4137877Z'\\\"\"},\"sku\":{\"name\":\"free\"}},{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6859/providers/Microsoft.Search/searchServices/azs-6502\",\"name\":\"azs-6502\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-05-09T04%3A41%3A20.5890349Z'\\\"\"},\"sku\":{\"name\":\"free\"}}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-4726\",\"name\":\"azs-4726\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-12-13T05%3A56%3A36.543195Z'\\\"\"},\"sku\":{\"name\":\"free\"}},{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-6302\",\"name\":\"azs-6302\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-12-13T05%3A56%3A37.864466Z'\\\"\"},\"sku\":{\"name\":\"free\"}}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -294,7 +294,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:23 GMT" + "Wed, 13 Dec 2017 05:56:38 GMT" ], "Pragma": [ "no-cache" @@ -307,13 +307,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "993f8f81-68d9-4f9d-b78d-c2ead1f7212d" + "a4447500-4635-4de2-89e0-4d61e7e414ce" ], "request-id": [ - "993f8f81-68d9-4f9d-b78d-c2ead1f7212d" + "a4447500-4635-4de2-89e0-4d61e7e414ce" ], "elapsed-time": [ - "171" + "264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,13 +322,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-correlation-request-id": [ - "8e958af0-bbad-4bb3-a029-36a8b5d018b0" + "9a14e7e5-30c9-4980-9318-7a57f7c6b705" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044124Z:8e958af0-bbad-4bb3-a029-36a8b5d018b0" + "CENTRALUS:20171213T055638Z:9a14e7e5-30c9-4980-9318-7a57f7c6b705" ] }, "StatusCode": 200 @@ -336,11 +336,11 @@ ], "Names": { "GenerateName": [ - "azsmnet6859" + "azsmnet4538" ], "GenerateServiceName": [ - "azs-6502", - "azs-4285" + "azs-4726", + "azs-6302" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json index d3031b797f3a2..f891c3eb6ceea 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1807b74d-9d27-40b6-adb0-f688673a45fd" + "c13b3363-c88d-442c-8a62-03f69ec4c34a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:37 GMT" + "Wed, 13 Dec 2017 05:56:54 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1131" ], "x-ms-request-id": [ - "b0210124-0466-4554-9fca-a52183971606" + "6be46671-5405-4a99-ba0e-65e0be926bb6" ], "x-ms-correlation-request-id": [ - "b0210124-0466-4554-9fca-a52183971606" + "6be46671-5405-4a99-ba0e-65e0be926bb6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044137Z:b0210124-0466-4554-9fca-a52183971606" + "CENTRALUS:20171213T055655Z:6be46671-5405-4a99-ba0e-65e0be926bb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3693?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNjkzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2306?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "c1305e00-431e-4a8d-8bab-dfebbe21fe76" + "0530c935-e649-4a52-8e11-89bddb3243a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693\",\r\n \"name\": \"azsmnet3693\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306\",\r\n \"name\": \"azsmnet2306\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:38 GMT" + "Wed, 13 Dec 2017 05:56:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1130" ], "x-ms-request-id": [ - "6c02ea3f-3e19-4ba5-95d7-c2466a03ab5d" + "83113c72-1c17-4d98-a055-90d8f9fde5fa" ], "x-ms-correlation-request-id": [ - "6c02ea3f-3e19-4ba5-95d7-c2466a03ab5d" + "83113c72-1c17-4d98-a055-90d8f9fde5fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044138Z:6c02ea3f-3e19-4ba5-95d7-c2466a03ab5d" + "CENTRALUS:20171213T055655Z:83113c72-1c17-4d98-a055-90d8f9fde5fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,20 +132,20 @@ "142" ], "x-ms-client-request-id": [ - "70aef2bc-848c-47c4-9626-fc4dc2889b74" + "ebd5246d-3395-43ef-9244-0e23bbdd485b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Length": [ - "386" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:43 GMT" + "Wed, 13 Dec 2017 05:56:58 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A43.5640996Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "x-ms-request-id": [ - "70aef2bc-848c-47c4-9626-fc4dc2889b74" + "ebd5246d-3395-43ef-9244-0e23bbdd485b" ], "request-id": [ - "70aef2bc-848c-47c4-9626-fc4dc2889b74" + "ebd5246d-3395-43ef-9244-0e23bbdd485b" ], "elapsed-time": [ - "2625" + "2034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,20 +181,20 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1129" ], "x-ms-correlation-request-id": [ - "9f948d4c-d2ff-4778-a80b-bc59bbf2a57b" + "5d09eee4-9e9a-43f2-a46d-45f1230dd90c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044144Z:9f948d4c-d2ff-4778-a80b-bc59bbf2a57b" + "CENTRALUS:20171213T055658Z:5d09eee4-9e9a-43f2-a46d-45f1230dd90c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 2,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -205,17 +205,17 @@ "173" ], "x-ms-client-request-id": [ - "5db12caf-83b2-48a9-b63f-1f40aca8b0ba" + "7565b1b5-3901-474e-8730-ea5992f1288f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:52 GMT" + "Wed, 13 Dec 2017 06:11:12 GMT" ], "Pragma": [ "no-cache" @@ -236,20 +236,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5db12caf-83b2-48a9-b63f-1f40aca8b0ba" + "7565b1b5-3901-474e-8730-ea5992f1288f" ], "request-id": [ - "5db12caf-83b2-48a9-b63f-1f40aca8b0ba" + "7565b1b5-3901-474e-8730-ea5992f1288f" ], "elapsed-time": [ - "7788" + "2090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,20 +258,20 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1128" ], "x-ms-correlation-request-id": [ - "a8050ffb-7504-440f-a068-4bcec314c35f" + "afc2d753-edb6-4452-b99e-8d4dfc968cc7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044152Z:a8050ffb-7504-440f-a068-4bcec314c35f" + "CENTRALUS:20171213T061112Z:afc2d753-edb6-4452-b99e-8d4dfc968cc7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -282,17 +282,17 @@ "173" ], "x-ms-client-request-id": [ - "122cffa6-f496-4aa5-9106-ca35cec24d5f" + "1b804a52-6766-4a7f-9199-333c8da49c0e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +304,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:10:34 GMT" + "Wed, 13 Dec 2017 06:29:01 GMT" ], "Pragma": [ "no-cache" @@ -313,20 +313,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "122cffa6-f496-4aa5-9106-ca35cec24d5f" + "1b804a52-6766-4a7f-9199-333c8da49c0e" ], "request-id": [ - "122cffa6-f496-4aa5-9106-ca35cec24d5f" + "1b804a52-6766-4a7f-9199-333c8da49c0e" ], "elapsed-time": [ - "7749" + "5715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -335,35 +335,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1127" ], "x-ms-correlation-request-id": [ - "ea47ce6f-f313-4e22-9187-2e12a22f2f39" + "c826f786-a07c-40c5-9ea1-5f1e2063c578" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051034Z:ea47ce6f-f313-4e22-9187-2e12a22f2f39" + "CENTRALUS:20171213T062901Z:c826f786-a07c-40c5-9ea1-5f1e2063c578" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "65c8f78a-4033-4bed-b86e-c1bf2af4fe48" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -375,7 +369,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:42:02 GMT" + "Wed, 13 Dec 2017 05:57:28 GMT" ], "Pragma": [ "no-cache" @@ -384,20 +378,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "65c8f78a-4033-4bed-b86e-c1bf2af4fe48" + "c6d2e2bb-3207-49f2-8cfe-a03a6a79ea8c" ], "request-id": [ - "65c8f78a-4033-4bed-b86e-c1bf2af4fe48" + "c6d2e2bb-3207-49f2-8cfe-a03a6a79ea8c" ], "elapsed-time": [ - "77" + "82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,35 +400,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-correlation-request-id": [ - "8c503904-85ff-4c8f-aabe-e809de997391" + "687ae582-a47a-460e-a631-5c3907531f42" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044202Z:8c503904-85ff-4c8f-aabe-e809de997391" + "CENTRALUS:20171213T055728Z:687ae582-a47a-460e-a631-5c3907531f42" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a7163b5c-1698-4936-a384-d803ebe5caac" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -446,7 +434,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:42:12 GMT" + "Wed, 13 Dec 2017 05:57:59 GMT" ], "Pragma": [ "no-cache" @@ -455,20 +443,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a7163b5c-1698-4936-a384-d803ebe5caac" + "a61216f2-88c2-43ab-be3b-c1f7d344a93d" ], "request-id": [ - "a7163b5c-1698-4936-a384-d803ebe5caac" + "a61216f2-88c2-43ab-be3b-c1f7d344a93d" ], "elapsed-time": [ - "131" + "163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,35 +465,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-correlation-request-id": [ - "e88e3ad3-1599-4c2a-8305-58e84a204ebb" + "1fcd10fe-f334-4641-aee2-98270b228da7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044213Z:e88e3ad3-1599-4c2a-8305-58e84a204ebb" + "CENTRALUS:20171213T055759Z:1fcd10fe-f334-4641-aee2-98270b228da7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "73ba07b3-cafd-4034-8329-9a32a69cf179" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -517,7 +499,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:42:23 GMT" + "Wed, 13 Dec 2017 05:58:29 GMT" ], "Pragma": [ "no-cache" @@ -526,20 +508,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "73ba07b3-cafd-4034-8329-9a32a69cf179" + "fab96e97-1fb1-4b22-a273-be790e76e0fe" ], "request-id": [ - "73ba07b3-cafd-4034-8329-9a32a69cf179" + "fab96e97-1fb1-4b22-a273-be790e76e0fe" ], "elapsed-time": [ - "101" + "168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -548,35 +530,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-correlation-request-id": [ - "ee301b76-d45d-4391-83b7-29ec56f27be5" + "79a99595-f5c7-44fb-94fb-d438dda05b16" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044223Z:ee301b76-d45d-4391-83b7-29ec56f27be5" + "CENTRALUS:20171213T055829Z:79a99595-f5c7-44fb-94fb-d438dda05b16" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a332eeae-9f1b-4b6b-8510-b734cd4787f0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -588,7 +564,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:42:35 GMT" + "Wed, 13 Dec 2017 05:58:59 GMT" ], "Pragma": [ "no-cache" @@ -597,20 +573,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a332eeae-9f1b-4b6b-8510-b734cd4787f0" + "d56637ec-1d3d-4369-b2a0-94b604207246" ], "request-id": [ - "a332eeae-9f1b-4b6b-8510-b734cd4787f0" + "d56637ec-1d3d-4369-b2a0-94b604207246" ], "elapsed-time": [ - "1640" + "119" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -619,35 +595,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-correlation-request-id": [ - "024faf50-89c1-4b19-a157-744bfe5ebae6" + "ec703d05-d32b-421c-97cb-80193b8e127b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044235Z:024faf50-89c1-4b19-a157-744bfe5ebae6" + "CENTRALUS:20171213T055859Z:ec703d05-d32b-421c-97cb-80193b8e127b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f7e2d1ba-5694-414e-a338-5c3ad8e541da" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -659,7 +629,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:42:45 GMT" + "Wed, 13 Dec 2017 05:59:30 GMT" ], "Pragma": [ "no-cache" @@ -668,20 +638,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f7e2d1ba-5694-414e-a338-5c3ad8e541da" + "283d0284-7aa7-41ec-b453-32b7baaf71ff" ], "request-id": [ - "f7e2d1ba-5694-414e-a338-5c3ad8e541da" + "283d0284-7aa7-41ec-b453-32b7baaf71ff" ], "elapsed-time": [ - "74" + "130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,35 +660,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14986" ], "x-ms-correlation-request-id": [ - "f7d53428-fabd-4417-8a55-602963a7af93" + "50d2edc5-5ba1-48f4-9786-4a9d5fd70a97" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044246Z:f7d53428-fabd-4417-8a55-602963a7af93" + "CENTRALUS:20171213T055930Z:50d2edc5-5ba1-48f4-9786-4a9d5fd70a97" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bf3fa7a8-0424-4653-9f94-062294b79ebd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -730,7 +694,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:42:56 GMT" + "Wed, 13 Dec 2017 06:00:00 GMT" ], "Pragma": [ "no-cache" @@ -739,20 +703,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "bf3fa7a8-0424-4653-9f94-062294b79ebd" + "0f272518-a167-4282-92b2-284a3f92e015" ], "request-id": [ - "bf3fa7a8-0424-4653-9f94-062294b79ebd" + "0f272518-a167-4282-92b2-284a3f92e015" ], "elapsed-time": [ - "481" + "1100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,35 +725,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14985" ], "x-ms-correlation-request-id": [ - "be5958ab-754a-42da-9797-d40f4ea30778" + "e1ea833c-2e99-4f36-b45c-74e2974bad61" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044257Z:be5958ab-754a-42da-9797-d40f4ea30778" + "CENTRALUS:20171213T060001Z:e1ea833c-2e99-4f36-b45c-74e2974bad61" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bd8d7c2f-e827-4399-9c1b-f80b7b9b107d" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -801,7 +759,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:43:06 GMT" + "Wed, 13 Dec 2017 06:00:31 GMT" ], "Pragma": [ "no-cache" @@ -810,20 +768,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "bd8d7c2f-e827-4399-9c1b-f80b7b9b107d" + "665bc40c-9831-4cc5-a619-d7a30cf1334e" ], "request-id": [ - "bd8d7c2f-e827-4399-9c1b-f80b7b9b107d" + "665bc40c-9831-4cc5-a619-d7a30cf1334e" ], "elapsed-time": [ - "238" + "62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -832,35 +790,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14984" ], "x-ms-correlation-request-id": [ - "7960a2f3-2efc-40ad-b4fe-a3b0fea84b99" + "70bf3573-2142-4a09-9d0b-369172a0f6aa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044307Z:7960a2f3-2efc-40ad-b4fe-a3b0fea84b99" + "CENTRALUS:20171213T060031Z:70bf3573-2142-4a09-9d0b-369172a0f6aa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2e567dff-cf00-42fc-93b4-01a3a57e066b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -872,7 +824,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:43:17 GMT" + "Wed, 13 Dec 2017 06:01:00 GMT" ], "Pragma": [ "no-cache" @@ -881,20 +833,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2e567dff-cf00-42fc-93b4-01a3a57e066b" + "ff20fb65-1a29-4b30-83ce-44a1d6850b0b" ], "request-id": [ - "2e567dff-cf00-42fc-93b4-01a3a57e066b" + "ff20fb65-1a29-4b30-83ce-44a1d6850b0b" ], "elapsed-time": [ - "121" + "58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,35 +855,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14983" ], "x-ms-correlation-request-id": [ - "f7296042-6299-40b5-872d-b0cd0b2581da" + "938c077f-fca6-4dea-8494-85744f612add" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044318Z:f7296042-6299-40b5-872d-b0cd0b2581da" + "CENTRALUS:20171213T060101Z:938c077f-fca6-4dea-8494-85744f612add" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e05b51b4-2188-4c60-ad7b-6ba21bbf25dc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -943,7 +889,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:43:27 GMT" + "Wed, 13 Dec 2017 06:01:31 GMT" ], "Pragma": [ "no-cache" @@ -952,20 +898,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e05b51b4-2188-4c60-ad7b-6ba21bbf25dc" + "e056d508-c7c8-43a1-b9ed-a1d42be47e83" ], "request-id": [ - "e05b51b4-2188-4c60-ad7b-6ba21bbf25dc" + "e056d508-c7c8-43a1-b9ed-a1d42be47e83" ], "elapsed-time": [ - "86" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -974,35 +920,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14982" ], "x-ms-correlation-request-id": [ - "0546bba9-01a1-4a9a-af7d-c830196af3af" + "3c780ae4-8777-420e-9320-fa8ae12e6a3e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044328Z:0546bba9-01a1-4a9a-af7d-c830196af3af" + "CENTRALUS:20171213T060131Z:3c780ae4-8777-420e-9320-fa8ae12e6a3e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "577e2a26-bf87-4a70-9ba6-6b221c137167" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1014,7 +954,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:43:38 GMT" + "Wed, 13 Dec 2017 06:02:01 GMT" ], "Pragma": [ "no-cache" @@ -1023,20 +963,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "577e2a26-bf87-4a70-9ba6-6b221c137167" + "dacfa1f8-a216-4e3e-bc00-a4cf2a857fc6" ], "request-id": [ - "577e2a26-bf87-4a70-9ba6-6b221c137167" + "dacfa1f8-a216-4e3e-bc00-a4cf2a857fc6" ], "elapsed-time": [ - "116" + "133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,35 +985,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14981" ], "x-ms-correlation-request-id": [ - "6e5e625c-cdf9-48d9-b72a-70172db99de0" + "2dcb072e-082d-4968-baed-4d1e9f1cfb25" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044338Z:6e5e625c-cdf9-48d9-b72a-70172db99de0" + "CENTRALUS:20171213T060202Z:2dcb072e-082d-4968-baed-4d1e9f1cfb25" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "751b3932-2c79-4e8b-b928-3c020a8ce276" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1085,7 +1019,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:43:49 GMT" + "Wed, 13 Dec 2017 06:02:32 GMT" ], "Pragma": [ "no-cache" @@ -1094,20 +1028,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "751b3932-2c79-4e8b-b928-3c020a8ce276" + "34907edf-f5c2-45ec-9959-91fa6df63a7d" ], "request-id": [ - "751b3932-2c79-4e8b-b928-3c020a8ce276" + "34907edf-f5c2-45ec-9959-91fa6df63a7d" ], "elapsed-time": [ - "206" + "73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,35 +1050,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14980" ], "x-ms-correlation-request-id": [ - "43dac1ba-a9d9-4501-ad2a-1cfb158f8465" + "33281ca1-ad1b-41df-8e45-dd87f86a2766" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044349Z:43dac1ba-a9d9-4501-ad2a-1cfb158f8465" + "CENTRALUS:20171213T060232Z:33281ca1-ad1b-41df-8e45-dd87f86a2766" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "63c8b06b-25c8-42f2-9f0f-87fe9d5e5cae" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1156,7 +1084,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:43:59 GMT" + "Wed, 13 Dec 2017 06:03:02 GMT" ], "Pragma": [ "no-cache" @@ -1165,20 +1093,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "63c8b06b-25c8-42f2-9f0f-87fe9d5e5cae" + "67eba2b0-ff40-4c85-8665-81e561e5fa11" ], "request-id": [ - "63c8b06b-25c8-42f2-9f0f-87fe9d5e5cae" + "67eba2b0-ff40-4c85-8665-81e561e5fa11" ], "elapsed-time": [ - "228" + "87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,35 +1115,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14979" ], "x-ms-correlation-request-id": [ - "31b2f2cb-526e-4b81-9a74-9cb1edc565bb" + "45931bb9-2f82-4a5d-a793-7971a640f789" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044400Z:31b2f2cb-526e-4b81-9a74-9cb1edc565bb" + "CENTRALUS:20171213T060302Z:45931bb9-2f82-4a5d-a793-7971a640f789" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "deb6bd05-d9b0-4a37-be56-d55fc2871c2d" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1227,7 +1149,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:44:09 GMT" + "Wed, 13 Dec 2017 06:03:32 GMT" ], "Pragma": [ "no-cache" @@ -1236,20 +1158,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "deb6bd05-d9b0-4a37-be56-d55fc2871c2d" + "27d09cbf-1c1c-41aa-b332-c7b7364d77cb" ], "request-id": [ - "deb6bd05-d9b0-4a37-be56-d55fc2871c2d" + "27d09cbf-1c1c-41aa-b332-c7b7364d77cb" ], "elapsed-time": [ - "70" + "98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1258,35 +1180,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14978" ], "x-ms-correlation-request-id": [ - "e194bb9a-39c6-4620-b190-10e0b891c030" + "c8aefb4b-5f86-4fd7-b1e8-5b7040ac229e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044410Z:e194bb9a-39c6-4620-b190-10e0b891c030" + "CENTRALUS:20171213T060332Z:c8aefb4b-5f86-4fd7-b1e8-5b7040ac229e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a6f64686-8cc0-47f0-baad-ab6096fc93ef" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1298,7 +1214,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:44:21 GMT" + "Wed, 13 Dec 2017 06:04:02 GMT" ], "Pragma": [ "no-cache" @@ -1307,20 +1223,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a6f64686-8cc0-47f0-baad-ab6096fc93ef" + "d4476e74-0160-4838-8549-f74ce3f92363" ], "request-id": [ - "a6f64686-8cc0-47f0-baad-ab6096fc93ef" + "d4476e74-0160-4838-8549-f74ce3f92363" ], "elapsed-time": [ - "271" + "155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,35 +1245,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14977" ], "x-ms-correlation-request-id": [ - "684d164b-f3d1-45c2-92ae-458c88b59305" + "b1909beb-2d34-415f-a91a-ffd44f4896f4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044421Z:684d164b-f3d1-45c2-92ae-458c88b59305" + "CENTRALUS:20171213T060403Z:b1909beb-2d34-415f-a91a-ffd44f4896f4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b893a873-3f7f-4bc4-b265-741260afb679" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1369,7 +1279,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:44:30 GMT" + "Wed, 13 Dec 2017 06:04:33 GMT" ], "Pragma": [ "no-cache" @@ -1378,20 +1288,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b893a873-3f7f-4bc4-b265-741260afb679" + "e4663809-8400-409f-80be-84d8699e8fd3" ], "request-id": [ - "b893a873-3f7f-4bc4-b265-741260afb679" + "e4663809-8400-409f-80be-84d8699e8fd3" ], "elapsed-time": [ - "85" + "238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,35 +1310,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14976" ], "x-ms-correlation-request-id": [ - "c4502ffc-bf1f-4ac5-bd3e-48e80ee78411" + "e59f227f-6fe1-43e9-91ef-ff9848e645ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044431Z:c4502ffc-bf1f-4ac5-bd3e-48e80ee78411" + "CENTRALUS:20171213T060433Z:e59f227f-6fe1-43e9-91ef-ff9848e645ae" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "df5788f1-a55a-4980-814d-3a3958a96012" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1440,7 +1344,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:44:42 GMT" + "Wed, 13 Dec 2017 06:05:03 GMT" ], "Pragma": [ "no-cache" @@ -1449,20 +1353,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "df5788f1-a55a-4980-814d-3a3958a96012" + "de6be014-9aa1-48b2-8510-4e16701a6fb6" ], "request-id": [ - "df5788f1-a55a-4980-814d-3a3958a96012" + "de6be014-9aa1-48b2-8510-4e16701a6fb6" ], "elapsed-time": [ - "946" + "76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1471,35 +1375,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14975" ], "x-ms-correlation-request-id": [ - "a9ac313f-5d67-49db-81a9-9604b9d487bf" + "9c5c95c0-01aa-4d59-9c90-eb329d73a49c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044442Z:a9ac313f-5d67-49db-81a9-9604b9d487bf" + "CENTRALUS:20171213T060503Z:9c5c95c0-01aa-4d59-9c90-eb329d73a49c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4f6583e9-9a56-440e-ad5a-089b9fd393b5" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1511,7 +1409,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:44:53 GMT" + "Wed, 13 Dec 2017 06:05:34 GMT" ], "Pragma": [ "no-cache" @@ -1520,20 +1418,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4f6583e9-9a56-440e-ad5a-089b9fd393b5" + "97a43980-b07d-4b8c-80c5-d8d9bcef5d10" ], "request-id": [ - "4f6583e9-9a56-440e-ad5a-089b9fd393b5" + "97a43980-b07d-4b8c-80c5-d8d9bcef5d10" ], "elapsed-time": [ - "122" + "276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1542,35 +1440,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14974" ], "x-ms-correlation-request-id": [ - "84bbf92a-2b97-4613-8ce1-75950ea9397a" + "3f2114a6-4ab3-436f-880a-6b0a64915c97" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044453Z:84bbf92a-2b97-4613-8ce1-75950ea9397a" + "CENTRALUS:20171213T060534Z:3f2114a6-4ab3-436f-880a-6b0a64915c97" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6eca856c-8add-46ab-ae2b-7212ea1c6b44" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1582,7 +1474,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:45:03 GMT" + "Wed, 13 Dec 2017 06:06:04 GMT" ], "Pragma": [ "no-cache" @@ -1591,20 +1483,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6eca856c-8add-46ab-ae2b-7212ea1c6b44" + "4985e97f-1948-460e-b601-81ab37c13402" ], "request-id": [ - "6eca856c-8add-46ab-ae2b-7212ea1c6b44" + "4985e97f-1948-460e-b601-81ab37c13402" ], "elapsed-time": [ - "279" + "299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,35 +1505,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14973" ], "x-ms-correlation-request-id": [ - "7bf48c50-10b4-4a41-b694-579c9416b1e8" + "66461685-eb52-495a-9936-1e33f6033ecf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044503Z:7bf48c50-10b4-4a41-b694-579c9416b1e8" + "CENTRALUS:20171213T060604Z:66461685-eb52-495a-9936-1e33f6033ecf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "726654bf-0259-4839-9fb9-73a69d6f0075" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1653,7 +1539,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:45:13 GMT" + "Wed, 13 Dec 2017 06:06:34 GMT" ], "Pragma": [ "no-cache" @@ -1662,20 +1548,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "726654bf-0259-4839-9fb9-73a69d6f0075" + "3baec8a8-a96b-4ed5-bf35-2a1724a0878d" ], "request-id": [ - "726654bf-0259-4839-9fb9-73a69d6f0075" + "3baec8a8-a96b-4ed5-bf35-2a1724a0878d" ], "elapsed-time": [ - "120" + "99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1684,35 +1570,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14972" ], "x-ms-correlation-request-id": [ - "bf43997f-cf3e-4049-a0f5-eb84db4fc07f" + "845dc4a8-4301-4656-8cf6-806368dc00c4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044514Z:bf43997f-cf3e-4049-a0f5-eb84db4fc07f" + "CENTRALUS:20171213T060634Z:845dc4a8-4301-4656-8cf6-806368dc00c4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "84993ff6-897a-4aab-ab7d-fb9e7e48e14b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1724,7 +1604,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:45:24 GMT" + "Wed, 13 Dec 2017 06:07:07 GMT" ], "Pragma": [ "no-cache" @@ -1733,20 +1613,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "84993ff6-897a-4aab-ab7d-fb9e7e48e14b" + "b3a9ce06-c495-4f85-a083-81ec388387de" ], "request-id": [ - "84993ff6-897a-4aab-ab7d-fb9e7e48e14b" + "b3a9ce06-c495-4f85-a083-81ec388387de" ], "elapsed-time": [ - "120" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1755,35 +1635,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14971" ], "x-ms-correlation-request-id": [ - "3d702ffd-1bd0-4877-9ed6-3ba29cf44a93" + "adefdf18-0f69-4437-a4fd-0965abb11ad0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044524Z:3d702ffd-1bd0-4877-9ed6-3ba29cf44a93" + "CENTRALUS:20171213T060707Z:adefdf18-0f69-4437-a4fd-0965abb11ad0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "47a8557c-381a-4437-8bbd-2669e38c5907" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1795,7 +1669,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:45:34 GMT" + "Wed, 13 Dec 2017 06:07:38 GMT" ], "Pragma": [ "no-cache" @@ -1804,20 +1678,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "47a8557c-381a-4437-8bbd-2669e38c5907" + "f574c196-cc9d-4fbd-a247-dbac92ca8fac" ], "request-id": [ - "47a8557c-381a-4437-8bbd-2669e38c5907" + "f574c196-cc9d-4fbd-a247-dbac92ca8fac" ], "elapsed-time": [ - "78" + "231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1826,35 +1700,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14970" ], "x-ms-correlation-request-id": [ - "2668f5fd-7f61-4ce2-81e4-9a5946397cf7" + "c4b32a80-51ed-460f-a7d6-414b9c3e5054" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044535Z:2668f5fd-7f61-4ce2-81e4-9a5946397cf7" + "CENTRALUS:20171213T060738Z:c4b32a80-51ed-460f-a7d6-414b9c3e5054" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3665d29a-0a7f-4dba-bedd-3c58a33de80f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1866,7 +1734,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:45:44 GMT" + "Wed, 13 Dec 2017 06:08:08 GMT" ], "Pragma": [ "no-cache" @@ -1875,20 +1743,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3665d29a-0a7f-4dba-bedd-3c58a33de80f" + "11da2e47-a21c-4269-b902-d0ca18a9a37d" ], "request-id": [ - "3665d29a-0a7f-4dba-bedd-3c58a33de80f" + "11da2e47-a21c-4269-b902-d0ca18a9a37d" ], "elapsed-time": [ - "113" + "254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1897,35 +1765,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14969" ], "x-ms-correlation-request-id": [ - "29ce29ad-9df7-4036-a9eb-d55898314135" + "752354e2-87ae-4e6a-b5ca-69aa2ed03243" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044545Z:29ce29ad-9df7-4036-a9eb-d55898314135" + "CENTRALUS:20171213T060808Z:752354e2-87ae-4e6a-b5ca-69aa2ed03243" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8eebb63e-ba0a-43c2-ac69-76ac22921a3c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1937,7 +1799,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:45:56 GMT" + "Wed, 13 Dec 2017 06:08:39 GMT" ], "Pragma": [ "no-cache" @@ -1946,20 +1808,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8eebb63e-ba0a-43c2-ac69-76ac22921a3c" + "93d4b0b7-3806-4f50-83bb-a6c4d11b0e7c" ], "request-id": [ - "8eebb63e-ba0a-43c2-ac69-76ac22921a3c" + "93d4b0b7-3806-4f50-83bb-a6c4d11b0e7c" ], "elapsed-time": [ - "78" + "234" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1968,35 +1830,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14968" ], "x-ms-correlation-request-id": [ - "8d1572e9-644f-46a1-bc88-27f097553a24" + "d459a760-9d14-4324-a9bd-51a4d5dafdab" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044556Z:8d1572e9-644f-46a1-bc88-27f097553a24" + "CENTRALUS:20171213T060839Z:d459a760-9d14-4324-a9bd-51a4d5dafdab" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2293275b-6cce-4302-8852-423bad228251" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2008,7 +1864,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:46:06 GMT" + "Wed, 13 Dec 2017 06:09:09 GMT" ], "Pragma": [ "no-cache" @@ -2017,20 +1873,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2293275b-6cce-4302-8852-423bad228251" + "7c9777df-c662-4e9d-a16e-06a0e21568fd" ], "request-id": [ - "2293275b-6cce-4302-8852-423bad228251" + "7c9777df-c662-4e9d-a16e-06a0e21568fd" ], "elapsed-time": [ - "160" + "74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2039,35 +1895,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14967" ], "x-ms-correlation-request-id": [ - "9c6f4b2a-a7a8-492c-8a64-599c8da08509" + "b73325bf-5d4b-4c42-99ed-f25114576b8e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044606Z:9c6f4b2a-a7a8-492c-8a64-599c8da08509" + "CENTRALUS:20171213T060909Z:b73325bf-5d4b-4c42-99ed-f25114576b8e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "12aba64d-a712-4a48-bca5-a749e625aa17" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2079,7 +1929,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:46:16 GMT" + "Wed, 13 Dec 2017 06:09:39 GMT" ], "Pragma": [ "no-cache" @@ -2088,20 +1938,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "12aba64d-a712-4a48-bca5-a749e625aa17" + "a9a6b46a-e79f-42e3-8787-0749ef8894fa" ], "request-id": [ - "12aba64d-a712-4a48-bca5-a749e625aa17" + "a9a6b46a-e79f-42e3-8787-0749ef8894fa" ], "elapsed-time": [ - "68" + "483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2110,35 +1960,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14966" ], "x-ms-correlation-request-id": [ - "36822a3b-c12c-4816-9bc0-6820fa5ea59a" + "7d5b8eb5-f819-4402-9ec5-58457491e9f3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044617Z:36822a3b-c12c-4816-9bc0-6820fa5ea59a" + "CENTRALUS:20171213T060940Z:7d5b8eb5-f819-4402-9ec5-58457491e9f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3ad97660-2457-4df7-89d1-9e2333bcba6a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2150,7 +1994,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:46:26 GMT" + "Wed, 13 Dec 2017 06:10:09 GMT" ], "Pragma": [ "no-cache" @@ -2159,20 +2003,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3ad97660-2457-4df7-89d1-9e2333bcba6a" + "d29b97fe-5f3c-4e45-8bda-19c76afed3da" ], "request-id": [ - "3ad97660-2457-4df7-89d1-9e2333bcba6a" + "d29b97fe-5f3c-4e45-8bda-19c76afed3da" ], "elapsed-time": [ - "102" + "76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2181,35 +2025,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14965" ], "x-ms-correlation-request-id": [ - "48673629-1ace-4878-899a-e92be3669550" + "64e6a852-221a-4427-9912-2d2712f22926" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044627Z:48673629-1ace-4878-899a-e92be3669550" + "CENTRALUS:20171213T061010Z:64e6a852-221a-4427-9912-2d2712f22926" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "491f30e5-fdde-47cf-bde8-87dc60de954f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2221,7 +2059,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:46:37 GMT" + "Wed, 13 Dec 2017 06:10:40 GMT" ], "Pragma": [ "no-cache" @@ -2230,20 +2068,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "491f30e5-fdde-47cf-bde8-87dc60de954f" + "3aff562d-864d-427a-9653-c7e78887d11e" ], "request-id": [ - "491f30e5-fdde-47cf-bde8-87dc60de954f" + "3aff562d-864d-427a-9653-c7e78887d11e" ], "elapsed-time": [ - "79" + "126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2252,35 +2090,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14964" ], "x-ms-correlation-request-id": [ - "dcaa84c9-30d3-4fb3-92d2-ad29a6cd7ba8" + "4a337b81-609f-4277-b65a-0d2863130326" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044637Z:dcaa84c9-30d3-4fb3-92d2-ad29a6cd7ba8" + "CENTRALUS:20171213T061040Z:4a337b81-609f-4277-b65a-0d2863130326" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8424cf06-17be-4ca4-a0a7-54fcb3ffec42" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2292,7 +2124,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:46:47 GMT" + "Wed, 13 Dec 2017 06:11:10 GMT" ], "Pragma": [ "no-cache" @@ -2301,20 +2133,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8424cf06-17be-4ca4-a0a7-54fcb3ffec42" + "7a52c7b5-7d5c-487b-a628-b7dea7b1fcc0" ], "request-id": [ - "8424cf06-17be-4ca4-a0a7-54fcb3ffec42" + "7a52c7b5-7d5c-487b-a628-b7dea7b1fcc0" ], "elapsed-time": [ - "67" + "98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2323,35 +2155,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14963" ], "x-ms-correlation-request-id": [ - "77a5e105-5669-4214-b7e6-ef4cc6bea490" + "a7c6be67-10b3-4c47-a939-2e8f50e1587d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044648Z:77a5e105-5669-4214-b7e6-ef4cc6bea490" + "CENTRALUS:20171213T061110Z:a7c6be67-10b3-4c47-a939-2e8f50e1587d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "39e13f45-7d3a-41e7-bc04-91913c06e66f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2363,7 +2189,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:46:58 GMT" + "Wed, 13 Dec 2017 06:11:42 GMT" ], "Pragma": [ "no-cache" @@ -2372,20 +2198,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "39e13f45-7d3a-41e7-bc04-91913c06e66f" + "3490d45c-4d3f-47ff-becd-3ce7a3020bc0" ], "request-id": [ - "39e13f45-7d3a-41e7-bc04-91913c06e66f" + "3490d45c-4d3f-47ff-becd-3ce7a3020bc0" ], "elapsed-time": [ - "83" + "133" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,35 +2220,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14962" ], "x-ms-correlation-request-id": [ - "10ecb380-1ddd-415c-aa05-362dc176d048" + "16a0262b-683f-4491-8a11-07ad696c5bf3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044658Z:10ecb380-1ddd-415c-aa05-362dc176d048" + "CENTRALUS:20171213T061143Z:16a0262b-683f-4491-8a11-07ad696c5bf3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "dca5e618-bca8-420b-8f49-dd21e20e6cef" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2434,7 +2254,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:47:08 GMT" + "Wed, 13 Dec 2017 06:12:13 GMT" ], "Pragma": [ "no-cache" @@ -2443,20 +2263,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "dca5e618-bca8-420b-8f49-dd21e20e6cef" + "556b7a5a-21df-4ffc-8420-418422ee950a" ], "request-id": [ - "dca5e618-bca8-420b-8f49-dd21e20e6cef" + "556b7a5a-21df-4ffc-8420-418422ee950a" ], "elapsed-time": [ - "91" + "82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2465,35 +2285,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14961" ], "x-ms-correlation-request-id": [ - "b19c6c5d-298d-4fc3-8086-11434ee2d581" + "9822f14e-5c62-4426-affc-85b68bb847a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044709Z:b19c6c5d-298d-4fc3-8086-11434ee2d581" + "CENTRALUS:20171213T061213Z:9822f14e-5c62-4426-affc-85b68bb847a0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "95ed662a-a2fd-4b69-ac5c-e8bab49b2fbd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2505,7 +2319,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:47:19 GMT" + "Wed, 13 Dec 2017 06:12:43 GMT" ], "Pragma": [ "no-cache" @@ -2514,20 +2328,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "95ed662a-a2fd-4b69-ac5c-e8bab49b2fbd" + "17b4cafd-c226-4c0d-a3e4-e7e7c68d8a65" ], "request-id": [ - "95ed662a-a2fd-4b69-ac5c-e8bab49b2fbd" + "17b4cafd-c226-4c0d-a3e4-e7e7c68d8a65" ], "elapsed-time": [ - "73" + "127" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2536,35 +2350,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14960" ], "x-ms-correlation-request-id": [ - "534b7b3b-c6ad-49ca-818f-5f5a2c02071b" + "8e8ea220-c3c9-47ef-afd9-6f1a7f749ac4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044719Z:534b7b3b-c6ad-49ca-818f-5f5a2c02071b" + "CENTRALUS:20171213T061243Z:8e8ea220-c3c9-47ef-afd9-6f1a7f749ac4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "da0b69b0-e5c0-4aab-9d8f-f032695adb4f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2576,7 +2384,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:47:30 GMT" + "Wed, 13 Dec 2017 06:13:13 GMT" ], "Pragma": [ "no-cache" @@ -2585,20 +2393,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "da0b69b0-e5c0-4aab-9d8f-f032695adb4f" + "9b213cd3-1c8c-417f-b427-b87c67c57a81" ], "request-id": [ - "da0b69b0-e5c0-4aab-9d8f-f032695adb4f" + "9b213cd3-1c8c-417f-b427-b87c67c57a81" ], "elapsed-time": [ - "199" + "107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2607,35 +2415,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14959" ], "x-ms-correlation-request-id": [ - "f69bba49-d1a5-4eac-b6a6-d3a21763d850" + "e681452a-8569-48b5-b614-033477e9c4ff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044730Z:f69bba49-d1a5-4eac-b6a6-d3a21763d850" + "CENTRALUS:20171213T061313Z:e681452a-8569-48b5-b614-033477e9c4ff" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7587b42c-4b3d-4936-a843-cae0a82f7ead" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2647,7 +2449,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:47:39 GMT" + "Wed, 13 Dec 2017 06:13:43 GMT" ], "Pragma": [ "no-cache" @@ -2656,20 +2458,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7587b42c-4b3d-4936-a843-cae0a82f7ead" + "a1012426-a36a-4e68-a5dd-8f79b23f9539" ], "request-id": [ - "7587b42c-4b3d-4936-a843-cae0a82f7ead" + "a1012426-a36a-4e68-a5dd-8f79b23f9539" ], "elapsed-time": [ - "80" + "75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2678,8626 +2480,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14958" ], "x-ms-correlation-request-id": [ - "60b8d471-79bf-429d-9169-bf779dcc2972" + "b9d487b1-be36-458a-b92a-8da85aa12575" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044740Z:60b8d471-79bf-429d-9169-bf779dcc2972" + "CENTRALUS:20171213T061343Z:b9d487b1-be36-458a-b92a-8da85aa12575" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1f0e8f36-7486-473a-9ae4-7b36e9be4bd5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:47:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1f0e8f36-7486-473a-9ae4-7b36e9be4bd5" - ], - "request-id": [ - "1f0e8f36-7486-473a-9ae4-7b36e9be4bd5" - ], - "elapsed-time": [ - "292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "ed219d63-9680-49a0-8bcc-97795229d15f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044751Z:ed219d63-9680-49a0-8bcc-97795229d15f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "397b1a7d-57d5-4193-9729-219d17138d33" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:48:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "397b1a7d-57d5-4193-9729-219d17138d33" - ], - "request-id": [ - "397b1a7d-57d5-4193-9729-219d17138d33" - ], - "elapsed-time": [ - "88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "343bda74-d200-439e-8844-1d6a2308b163" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044801Z:343bda74-d200-439e-8844-1d6a2308b163" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c68750d-656a-436c-b0c8-5283a3bf249f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:48:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6c68750d-656a-436c-b0c8-5283a3bf249f" - ], - "request-id": [ - "6c68750d-656a-436c-b0c8-5283a3bf249f" - ], - "elapsed-time": [ - "165" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "55c59b74-e682-4d37-8702-b7926573f69c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044812Z:55c59b74-e682-4d37-8702-b7926573f69c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7de55594-4572-48f5-b984-6f8ebc7fb53b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:48:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7de55594-4572-48f5-b984-6f8ebc7fb53b" - ], - "request-id": [ - "7de55594-4572-48f5-b984-6f8ebc7fb53b" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "80ba451d-1966-41ed-bebb-739ddfe4e7d5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044822Z:80ba451d-1966-41ed-bebb-739ddfe4e7d5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ac8d968-2967-4954-852f-38618e15ebfa" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:48:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6ac8d968-2967-4954-852f-38618e15ebfa" - ], - "request-id": [ - "6ac8d968-2967-4954-852f-38618e15ebfa" - ], - "elapsed-time": [ - "140" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "23433a0b-ae28-4efe-8c8e-b0cf4e476ec8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044833Z:23433a0b-ae28-4efe-8c8e-b0cf4e476ec8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6f871527-0843-432c-ac55-ea0c34927c14" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:48:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6f871527-0843-432c-ac55-ea0c34927c14" - ], - "request-id": [ - "6f871527-0843-432c-ac55-ea0c34927c14" - ], - "elapsed-time": [ - "91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "b0deb446-e000-49e4-bc4a-46fb99a93fef" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044843Z:b0deb446-e000-49e4-bc4a-46fb99a93fef" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6fe4302b-21f5-42d6-9d50-b88df86a3042" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:48:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6fe4302b-21f5-42d6-9d50-b88df86a3042" - ], - "request-id": [ - "6fe4302b-21f5-42d6-9d50-b88df86a3042" - ], - "elapsed-time": [ - "796" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "df99803c-c267-4edc-b049-c2e8505a4724" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044854Z:df99803c-c267-4edc-b049-c2e8505a4724" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6dc0f78a-bd6c-4b34-8e90-5572b8636c27" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:49:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6dc0f78a-bd6c-4b34-8e90-5572b8636c27" - ], - "request-id": [ - "6dc0f78a-bd6c-4b34-8e90-5572b8636c27" - ], - "elapsed-time": [ - "66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "7dc727fc-04cd-4193-9953-11ba14cc9a86" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044905Z:7dc727fc-04cd-4193-9953-11ba14cc9a86" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fe6944b8-8946-42b9-a323-ff401866d67f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:49:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "fe6944b8-8946-42b9-a323-ff401866d67f" - ], - "request-id": [ - "fe6944b8-8946-42b9-a323-ff401866d67f" - ], - "elapsed-time": [ - "1094" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "08e1b340-b699-45d9-aba1-f00d3c215510" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044916Z:08e1b340-b699-45d9-aba1-f00d3c215510" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "633cde0c-1292-43d2-90e8-dbdb1faf0051" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:49:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "633cde0c-1292-43d2-90e8-dbdb1faf0051" - ], - "request-id": [ - "633cde0c-1292-43d2-90e8-dbdb1faf0051" - ], - "elapsed-time": [ - "178" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "527332fb-bcca-4943-94a2-20bf30bccd8f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044926Z:527332fb-bcca-4943-94a2-20bf30bccd8f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f1c8396-ba04-4ca2-92a6-80ce790eb3da" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:49:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3f1c8396-ba04-4ca2-92a6-80ce790eb3da" - ], - "request-id": [ - "3f1c8396-ba04-4ca2-92a6-80ce790eb3da" - ], - "elapsed-time": [ - "110" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "04dfc3ca-8c2e-488f-bd9c-4d358bbdfda3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044937Z:04dfc3ca-8c2e-488f-bd9c-4d358bbdfda3" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d496fad3-80e4-49e0-965b-ede27357f2e4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:49:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d496fad3-80e4-49e0-965b-ede27357f2e4" - ], - "request-id": [ - "d496fad3-80e4-49e0-965b-ede27357f2e4" - ], - "elapsed-time": [ - "84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "0b3f5529-5f40-4137-8307-aa0eb2602d32" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044948Z:0b3f5529-5f40-4137-8307-aa0eb2602d32" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b788ea4e-b754-449e-a339-8d5983185aa5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:50:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b788ea4e-b754-449e-a339-8d5983185aa5" - ], - "request-id": [ - "b788ea4e-b754-449e-a339-8d5983185aa5" - ], - "elapsed-time": [ - "5609" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "3f3cd711-03ae-4448-a1f1-c6cdef872c69" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045004Z:3f3cd711-03ae-4448-a1f1-c6cdef872c69" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ed753f0c-bf9d-4e6c-b142-4d77abd74207" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:50:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ed753f0c-bf9d-4e6c-b142-4d77abd74207" - ], - "request-id": [ - "ed753f0c-bf9d-4e6c-b142-4d77abd74207" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "dd7f2707-41b2-4a66-821c-4a728b488a20" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045014Z:dd7f2707-41b2-4a66-821c-4a728b488a20" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3ea98cd5-f4af-4a64-a2c1-8d31403a4f37" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:50:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3ea98cd5-f4af-4a64-a2c1-8d31403a4f37" - ], - "request-id": [ - "3ea98cd5-f4af-4a64-a2c1-8d31403a4f37" - ], - "elapsed-time": [ - "109" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "676e91c5-a0df-43d4-bc45-dbdd5003c4b8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045037Z:676e91c5-a0df-43d4-bc45-dbdd5003c4b8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c84af417-8e12-4e93-97b8-894050d44f53" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:50:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c84af417-8e12-4e93-97b8-894050d44f53" - ], - "request-id": [ - "c84af417-8e12-4e93-97b8-894050d44f53" - ], - "elapsed-time": [ - "84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "08440c8b-9bd7-4c48-a4fe-134d72190683" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045047Z:08440c8b-9bd7-4c48-a4fe-134d72190683" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5487a390-12bd-4284-832d-c78e375d04c7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:51:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5487a390-12bd-4284-832d-c78e375d04c7" - ], - "request-id": [ - "5487a390-12bd-4284-832d-c78e375d04c7" - ], - "elapsed-time": [ - "10612" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "30069984-b7b5-4e1e-8d4e-c311ce5545b0" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045108Z:30069984-b7b5-4e1e-8d4e-c311ce5545b0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5d6f4587-a8e4-4222-91b9-0e5d71c38506" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:51:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5d6f4587-a8e4-4222-91b9-0e5d71c38506" - ], - "request-id": [ - "5d6f4587-a8e4-4222-91b9-0e5d71c38506" - ], - "elapsed-time": [ - "88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-correlation-request-id": [ - "bca765dd-0703-417a-868f-18a84fef64df" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045119Z:bca765dd-0703-417a-868f-18a84fef64df" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9dd49d6-a1bd-42fc-8598-647b09390734" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:51:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e9dd49d6-a1bd-42fc-8598-647b09390734" - ], - "request-id": [ - "e9dd49d6-a1bd-42fc-8598-647b09390734" - ], - "elapsed-time": [ - "113" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "b31a9a55-cb8c-4fb6-8940-e1927c2f5e8a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045129Z:b31a9a55-cb8c-4fb6-8940-e1927c2f5e8a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d09448e8-19e9-4f2e-b351-9935f02badae" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:51:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d09448e8-19e9-4f2e-b351-9935f02badae" - ], - "request-id": [ - "d09448e8-19e9-4f2e-b351-9935f02badae" - ], - "elapsed-time": [ - "771" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "7bcd8ff1-3d95-49de-9590-c2bcc504a358" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045140Z:7bcd8ff1-3d95-49de-9590-c2bcc504a358" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ca587ad2-bb2f-4309-bfd0-3b4a01ac41ee" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:51:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ca587ad2-bb2f-4309-bfd0-3b4a01ac41ee" - ], - "request-id": [ - "ca587ad2-bb2f-4309-bfd0-3b4a01ac41ee" - ], - "elapsed-time": [ - "191" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "f5da9e4a-1893-44bf-9947-68fc51db2e83" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045151Z:f5da9e4a-1893-44bf-9947-68fc51db2e83" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "378046b8-e5a8-4271-a1eb-e0b086e3f7bc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:52:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "378046b8-e5a8-4271-a1eb-e0b086e3f7bc" - ], - "request-id": [ - "378046b8-e5a8-4271-a1eb-e0b086e3f7bc" - ], - "elapsed-time": [ - "237" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "80e7fd1c-3c3e-4238-8c04-bada432c63dc" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045201Z:80e7fd1c-3c3e-4238-8c04-bada432c63dc" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f2f0535d-4721-4a04-a151-8ae7c643397e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:52:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f2f0535d-4721-4a04-a151-8ae7c643397e" - ], - "request-id": [ - "f2f0535d-4721-4a04-a151-8ae7c643397e" - ], - "elapsed-time": [ - "89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "b2b5b5c6-b0ca-4847-86d5-1a9455ba72ef" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045212Z:b2b5b5c6-b0ca-4847-86d5-1a9455ba72ef" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "48a37293-9a7c-4428-9afd-c78656e814c5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:52:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "48a37293-9a7c-4428-9afd-c78656e814c5" - ], - "request-id": [ - "48a37293-9a7c-4428-9afd-c78656e814c5" - ], - "elapsed-time": [ - "332" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "f7cb965b-8e24-4e16-8397-41063f45dc05" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045222Z:f7cb965b-8e24-4e16-8397-41063f45dc05" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ab365c19-9275-4ae5-9330-97d78c482365" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:52:33 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ab365c19-9275-4ae5-9330-97d78c482365" - ], - "request-id": [ - "ab365c19-9275-4ae5-9330-97d78c482365" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "90c824ee-99fa-4187-94ed-61c00042118f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045233Z:90c824ee-99fa-4187-94ed-61c00042118f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "87369bb6-c541-4876-99ea-2d7a0f4aede6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:52:43 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "87369bb6-c541-4876-99ea-2d7a0f4aede6" - ], - "request-id": [ - "87369bb6-c541-4876-99ea-2d7a0f4aede6" - ], - "elapsed-time": [ - "453" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "bd5a94b7-8c78-499c-8459-3cd8c481adb5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045244Z:bd5a94b7-8c78-499c-8459-3cd8c481adb5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2412a918-895f-4c87-a090-ed56f310519d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:52:54 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2412a918-895f-4c87-a090-ed56f310519d" - ], - "request-id": [ - "2412a918-895f-4c87-a090-ed56f310519d" - ], - "elapsed-time": [ - "160" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "0b691956-2737-4e5a-9b5d-8a56f74449a8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045254Z:0b691956-2737-4e5a-9b5d-8a56f74449a8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e1e50038-a93e-437c-92d5-5751e6e70ef5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:53:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e1e50038-a93e-437c-92d5-5751e6e70ef5" - ], - "request-id": [ - "e1e50038-a93e-437c-92d5-5751e6e70ef5" - ], - "elapsed-time": [ - "157" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "8318352b-5bbe-4f04-97e7-d9e0d95b4821" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045305Z:8318352b-5bbe-4f04-97e7-d9e0d95b4821" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d412803-7d10-4b51-ae41-72c881e66163" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:53:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7d412803-7d10-4b51-ae41-72c881e66163" - ], - "request-id": [ - "7d412803-7d10-4b51-ae41-72c881e66163" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "18d832ee-9cfe-40a4-89f3-dfb600d7b199" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045315Z:18d832ee-9cfe-40a4-89f3-dfb600d7b199" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1ddebcb2-cf4e-46fa-8d0f-6c511f658f52" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:53:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1ddebcb2-cf4e-46fa-8d0f-6c511f658f52" - ], - "request-id": [ - "1ddebcb2-cf4e-46fa-8d0f-6c511f658f52" - ], - "elapsed-time": [ - "236" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "0b0acb71-38ea-45fc-a40c-69002d8195ad" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045326Z:0b0acb71-38ea-45fc-a40c-69002d8195ad" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2397c568-6ba4-4837-80d7-be7f6b4e4c8f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:53:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2397c568-6ba4-4837-80d7-be7f6b4e4c8f" - ], - "request-id": [ - "2397c568-6ba4-4837-80d7-be7f6b4e4c8f" - ], - "elapsed-time": [ - "112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "3192fc3f-6232-46dd-81c4-e84cad10aa6c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045336Z:3192fc3f-6232-46dd-81c4-e84cad10aa6c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d307d663-fc1f-4b4e-bdb9-9587ed1afa53" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:53:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d307d663-fc1f-4b4e-bdb9-9587ed1afa53" - ], - "request-id": [ - "d307d663-fc1f-4b4e-bdb9-9587ed1afa53" - ], - "elapsed-time": [ - "120" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "488a7576-2fde-4505-a6c4-de659ce3f255" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045347Z:488a7576-2fde-4505-a6c4-de659ce3f255" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "83b06ba1-386b-41ab-9c57-768b70c23822" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:53:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "83b06ba1-386b-41ab-9c57-768b70c23822" - ], - "request-id": [ - "83b06ba1-386b-41ab-9c57-768b70c23822" - ], - "elapsed-time": [ - "88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "e9371b5d-1e21-445e-bcfa-100c9050fbd2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045357Z:e9371b5d-1e21-445e-bcfa-100c9050fbd2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d846db0-c227-4f07-b8ad-2f42c1b06ef9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:54:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0d846db0-c227-4f07-b8ad-2f42c1b06ef9" - ], - "request-id": [ - "0d846db0-c227-4f07-b8ad-2f42c1b06ef9" - ], - "elapsed-time": [ - "261" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "7dcef39b-2e50-4941-b123-37a483300dbf" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045408Z:7dcef39b-2e50-4941-b123-37a483300dbf" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "03cb1e09-0367-4ac1-9838-d5d5df1b8144" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:54:17 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "03cb1e09-0367-4ac1-9838-d5d5df1b8144" - ], - "request-id": [ - "03cb1e09-0367-4ac1-9838-d5d5df1b8144" - ], - "elapsed-time": [ - "109" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "cb89a1d5-9397-4a57-871a-ba263f92e5ea" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045418Z:cb89a1d5-9397-4a57-871a-ba263f92e5ea" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9ae6fc92-474a-4880-99d7-5b2cc91727b1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:54:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9ae6fc92-474a-4880-99d7-5b2cc91727b1" - ], - "request-id": [ - "9ae6fc92-474a-4880-99d7-5b2cc91727b1" - ], - "elapsed-time": [ - "453" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "7e2abda0-a730-4f3f-9938-1c6eac5e0716" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045429Z:7e2abda0-a730-4f3f-9938-1c6eac5e0716" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "242fc686-dce5-4ce2-925b-480c8bca2862" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:54:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "242fc686-dce5-4ce2-925b-480c8bca2862" - ], - "request-id": [ - "242fc686-dce5-4ce2-925b-480c8bca2862" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "193e59da-2e7b-49dc-835b-67ee376b9b51" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045439Z:193e59da-2e7b-49dc-835b-67ee376b9b51" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ae70e5b-0fba-4f8c-aedd-1c91fa788e9d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:54:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8ae70e5b-0fba-4f8c-aedd-1c91fa788e9d" - ], - "request-id": [ - "8ae70e5b-0fba-4f8c-aedd-1c91fa788e9d" - ], - "elapsed-time": [ - "264" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "27a3b0e3-9b89-4409-8299-c790373961a4" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045450Z:27a3b0e3-9b89-4409-8299-c790373961a4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a88d4a20-1d7d-4265-943f-7dfb9efcc166" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:55:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a88d4a20-1d7d-4265-943f-7dfb9efcc166" - ], - "request-id": [ - "a88d4a20-1d7d-4265-943f-7dfb9efcc166" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "5ec1efab-0933-410f-bdab-5bd4589d67ab" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045500Z:5ec1efab-0933-410f-bdab-5bd4589d67ab" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "da19ea8d-dce6-4970-92f2-e505edd8c9cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:55:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "da19ea8d-dce6-4970-92f2-e505edd8c9cc" - ], - "request-id": [ - "da19ea8d-dce6-4970-92f2-e505edd8c9cc" - ], - "elapsed-time": [ - "120" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "d0ebdc36-bc2c-48e6-a277-592b418e3f5d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045511Z:d0ebdc36-bc2c-48e6-a277-592b418e3f5d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7efe029a-ac62-4eec-b7cf-a068febbffb2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:55:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7efe029a-ac62-4eec-b7cf-a068febbffb2" - ], - "request-id": [ - "7efe029a-ac62-4eec-b7cf-a068febbffb2" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "8456e81e-c6cb-4785-9355-e844ed4dd184" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045521Z:8456e81e-c6cb-4785-9355-e844ed4dd184" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1fb0c39b-e966-48e6-bcdf-f0fae4645d5e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:55:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1fb0c39b-e966-48e6-bcdf-f0fae4645d5e" - ], - "request-id": [ - "1fb0c39b-e966-48e6-bcdf-f0fae4645d5e" - ], - "elapsed-time": [ - "329" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "769dce99-250f-4691-9d6c-f3f450038553" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045532Z:769dce99-250f-4691-9d6c-f3f450038553" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1a85f71e-a95a-47cc-989e-5602ddc56281" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:55:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1a85f71e-a95a-47cc-989e-5602ddc56281" - ], - "request-id": [ - "1a85f71e-a95a-47cc-989e-5602ddc56281" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "d6e7e26b-bd89-47d3-8276-e7227691700f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045542Z:d6e7e26b-bd89-47d3-8276-e7227691700f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70755474-e464-4b90-b441-2303585242d2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:55:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "70755474-e464-4b90-b441-2303585242d2" - ], - "request-id": [ - "70755474-e464-4b90-b441-2303585242d2" - ], - "elapsed-time": [ - "68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "ca00163b-da0c-4d9c-83c9-5bc2893f4334" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045553Z:ca00163b-da0c-4d9c-83c9-5bc2893f4334" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c5b524a-7593-4a4c-bd19-d41a51ccf85f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:56:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7c5b524a-7593-4a4c-bd19-d41a51ccf85f" - ], - "request-id": [ - "7c5b524a-7593-4a4c-bd19-d41a51ccf85f" - ], - "elapsed-time": [ - "99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "50f7e58f-76f5-4a90-9854-e6f361b79cab" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045603Z:50f7e58f-76f5-4a90-9854-e6f361b79cab" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2cf07ab8-3378-4f37-bade-adc068f37181" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:56:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2cf07ab8-3378-4f37-bade-adc068f37181" - ], - "request-id": [ - "2cf07ab8-3378-4f37-bade-adc068f37181" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "5ec2c1d9-d813-4b9a-af58-1dbcd8e8e073" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045614Z:5ec2c1d9-d813-4b9a-af58-1dbcd8e8e073" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3137dbbc-1542-4de8-bd51-9e9d92433b93" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:56:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3137dbbc-1542-4de8-bd51-9e9d92433b93" - ], - "request-id": [ - "3137dbbc-1542-4de8-bd51-9e9d92433b93" - ], - "elapsed-time": [ - "99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "f1a7d192-105b-4fd0-a0b6-81191fbe94bd" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045624Z:f1a7d192-105b-4fd0-a0b6-81191fbe94bd" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8fd8c1bb-0120-4c40-8a65-c92e1fe1374a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:56:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8fd8c1bb-0120-4c40-8a65-c92e1fe1374a" - ], - "request-id": [ - "8fd8c1bb-0120-4c40-8a65-c92e1fe1374a" - ], - "elapsed-time": [ - "182" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "4b7dc66e-8bea-49e8-95b3-a5c2a1717582" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045635Z:4b7dc66e-8bea-49e8-95b3-a5c2a1717582" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c110991e-cb0b-4733-89a7-9f9d2eba3e63" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:56:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c110991e-cb0b-4733-89a7-9f9d2eba3e63" - ], - "request-id": [ - "c110991e-cb0b-4733-89a7-9f9d2eba3e63" - ], - "elapsed-time": [ - "84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "2accf4ee-535a-4bdd-a031-49886677bdf6" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045645Z:2accf4ee-535a-4bdd-a031-49886677bdf6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0af16ca5-8cfe-4577-94da-883082a30dc9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:56:55 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0af16ca5-8cfe-4577-94da-883082a30dc9" - ], - "request-id": [ - "0af16ca5-8cfe-4577-94da-883082a30dc9" - ], - "elapsed-time": [ - "144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "db53a1c2-d106-4bda-ba67-1bae5dc0601e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045656Z:db53a1c2-d106-4bda-ba67-1bae5dc0601e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb33623d-e502-472c-b69d-c4ad254d1f21" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:57:06 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "eb33623d-e502-472c-b69d-c4ad254d1f21" - ], - "request-id": [ - "eb33623d-e502-472c-b69d-c4ad254d1f21" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "a59a3e96-6bc7-4fa8-8d4e-af5462fcc014" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045706Z:a59a3e96-6bc7-4fa8-8d4e-af5462fcc014" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d66ecb4-f58f-4520-bd5d-2d8e081ab102" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:57:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8d66ecb4-f58f-4520-bd5d-2d8e081ab102" - ], - "request-id": [ - "8d66ecb4-f58f-4520-bd5d-2d8e081ab102" - ], - "elapsed-time": [ - "188" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "5a7854aa-d0d8-4f75-ab57-d588d09e970d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045717Z:5a7854aa-d0d8-4f75-ab57-d588d09e970d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1dcd659-e7e5-4042-8605-23a441cd7794" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:57:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b1dcd659-e7e5-4042-8605-23a441cd7794" - ], - "request-id": [ - "b1dcd659-e7e5-4042-8605-23a441cd7794" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "66c0eb45-1e79-404a-bb65-9b6735c255e8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045727Z:66c0eb45-1e79-404a-bb65-9b6735c255e8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "90432308-8cf2-44fc-a86b-5b2f3b776233" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:57:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "90432308-8cf2-44fc-a86b-5b2f3b776233" - ], - "request-id": [ - "90432308-8cf2-44fc-a86b-5b2f3b776233" - ], - "elapsed-time": [ - "438" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "45fcc2bd-40fb-4c46-bdf0-a76e4eea69d5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045738Z:45fcc2bd-40fb-4c46-bdf0-a76e4eea69d5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0b406a2b-cb2e-41bb-b425-145681291249" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:57:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "0b406a2b-cb2e-41bb-b425-145681291249" - ], - "request-id": [ - "0b406a2b-cb2e-41bb-b425-145681291249" - ], - "elapsed-time": [ - "214" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "fffa0330-ad4e-4eaa-b15b-93aa3bd52ea7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045749Z:fffa0330-ad4e-4eaa-b15b-93aa3bd52ea7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d851e0d-dadf-4c79-a234-86b3f55a8c1d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:57:59 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8d851e0d-dadf-4c79-a234-86b3f55a8c1d" - ], - "request-id": [ - "8d851e0d-dadf-4c79-a234-86b3f55a8c1d" - ], - "elapsed-time": [ - "143" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "cd591626-a72e-4c73-a3a3-094592abaf53" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045800Z:cd591626-a72e-4c73-a3a3-094592abaf53" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a9b3c1b-9e78-4aa9-893f-a25a8b7dbca5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:58:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2a9b3c1b-9e78-4aa9-893f-a25a8b7dbca5" - ], - "request-id": [ - "2a9b3c1b-9e78-4aa9-893f-a25a8b7dbca5" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "d7df6630-e6ee-4228-bd5e-d619b6893958" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045810Z:d7df6630-e6ee-4228-bd5e-d619b6893958" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1ce3630-defb-419c-9c77-b9ec95af3740" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:58:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d1ce3630-defb-419c-9c77-b9ec95af3740" - ], - "request-id": [ - "d1ce3630-defb-419c-9c77-b9ec95af3740" - ], - "elapsed-time": [ - "478" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "46751de2-1208-4404-91e2-2fe470a72d86" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045821Z:46751de2-1208-4404-91e2-2fe470a72d86" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a98c668a-f0eb-4196-aa12-ae31dde0c129" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:58:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a98c668a-f0eb-4196-aa12-ae31dde0c129" - ], - "request-id": [ - "a98c668a-f0eb-4196-aa12-ae31dde0c129" - ], - "elapsed-time": [ - "90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "a3ee0c25-f40f-4b86-b2f6-3b60e5c1b9a2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045831Z:a3ee0c25-f40f-4b86-b2f6-3b60e5c1b9a2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17a92474-a3ef-412f-9526-11a69faeb77f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:58:41 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "17a92474-a3ef-412f-9526-11a69faeb77f" - ], - "request-id": [ - "17a92474-a3ef-412f-9526-11a69faeb77f" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "970db678-ee92-40c7-8870-e1a77e4af16a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045842Z:970db678-ee92-40c7-8870-e1a77e4af16a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5761dc86-ea1a-4c1a-b2ed-e192953f4503" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:58:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5761dc86-ea1a-4c1a-b2ed-e192953f4503" - ], - "request-id": [ - "5761dc86-ea1a-4c1a-b2ed-e192953f4503" - ], - "elapsed-time": [ - "199" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "b6a0ab05-14ea-4363-9aee-ca32ad9ac631" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T045852Z:b6a0ab05-14ea-4363-9aee-ca32ad9ac631" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f328a03d-51b8-4ac0-a5f1-2542942cd301" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:59:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f328a03d-51b8-4ac0-a5f1-2542942cd301" - ], - "request-id": [ - "f328a03d-51b8-4ac0-a5f1-2542942cd301" - ], - "elapsed-time": [ - "88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "9e733da4-1507-424c-b59a-0cb37b9b3b5a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T045915Z:9e733da4-1507-424c-b59a-0cb37b9b3b5a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "daac239a-bdc6-4a32-8851-80f298fa387f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:59:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "daac239a-bdc6-4a32-8851-80f298fa387f" - ], - "request-id": [ - "daac239a-bdc6-4a32-8851-80f298fa387f" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "5092c3f8-41e7-4ee4-98f3-f948887cd6d8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T045925Z:5092c3f8-41e7-4ee4-98f3-f948887cd6d8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c744349e-7319-4bbd-9826-951214d6353e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:59:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c744349e-7319-4bbd-9826-951214d6353e" - ], - "request-id": [ - "c744349e-7319-4bbd-9826-951214d6353e" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "78b44b77-9616-4319-abc6-509ce54b244e" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T045935Z:78b44b77-9616-4319-abc6-509ce54b244e" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "253266fe-6295-46f9-b6f7-f6e6fa14a0aa" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:59:45 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "253266fe-6295-46f9-b6f7-f6e6fa14a0aa" - ], - "request-id": [ - "253266fe-6295-46f9-b6f7-f6e6fa14a0aa" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "c5ac2c62-96ae-4238-bac2-81000e3832ba" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T045946Z:c5ac2c62-96ae-4238-bac2-81000e3832ba" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3e828523-ddef-4c0c-a1fd-2a367a397515" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 04:59:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3e828523-ddef-4c0c-a1fd-2a367a397515" - ], - "request-id": [ - "3e828523-ddef-4c0c-a1fd-2a367a397515" - ], - "elapsed-time": [ - "79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "02c13f91-c949-4d31-8000-4097525c59b3" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T045956Z:02c13f91-c949-4d31-8000-4097525c59b3" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "57f4f90c-6776-480a-9646-3083747566a3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:00:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "57f4f90c-6776-480a-9646-3083747566a3" - ], - "request-id": [ - "57f4f90c-6776-480a-9646-3083747566a3" - ], - "elapsed-time": [ - "181" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "67bb7c54-f3ee-4fa4-81e8-64ff48b3c436" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050054Z:67bb7c54-f3ee-4fa4-81e8-64ff48b3c436" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71bfd670-68d7-4475-a549-ba7a00464632" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:01:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "71bfd670-68d7-4475-a549-ba7a00464632" - ], - "request-id": [ - "71bfd670-68d7-4475-a549-ba7a00464632" - ], - "elapsed-time": [ - "75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "929f7ba7-9f5b-46db-b3d3-22bfbc6302bb" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050104Z:929f7ba7-9f5b-46db-b3d3-22bfbc6302bb" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e9edc218-7f93-4912-86c5-c4ed0585bc75" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:01:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e9edc218-7f93-4912-86c5-c4ed0585bc75" - ], - "request-id": [ - "e9edc218-7f93-4912-86c5-c4ed0585bc75" - ], - "elapsed-time": [ - "87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "cc4df2f2-a4d8-4a7e-bf25-9f67ea0cfb68" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050114Z:cc4df2f2-a4d8-4a7e-bf25-9f67ea0cfb68" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aa8a8fc4-b0a7-4ece-bdb7-e8a15ab80bc5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:01:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "aa8a8fc4-b0a7-4ece-bdb7-e8a15ab80bc5" - ], - "request-id": [ - "aa8a8fc4-b0a7-4ece-bdb7-e8a15ab80bc5" - ], - "elapsed-time": [ - "83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "ae7e397f-e80d-43e0-af95-d65e06448a4c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050125Z:ae7e397f-e80d-43e0-af95-d65e06448a4c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "47e60324-1604-41a7-aef2-e7ae110e636e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:01:35 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "47e60324-1604-41a7-aef2-e7ae110e636e" - ], - "request-id": [ - "47e60324-1604-41a7-aef2-e7ae110e636e" - ], - "elapsed-time": [ - "100" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-correlation-request-id": [ - "00c34226-651a-4727-a053-c22defcc0a6a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050135Z:00c34226-651a-4727-a053-c22defcc0a6a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ab25f7ab-5b73-4352-903b-2df545b8d404" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:01:46 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ab25f7ab-5b73-4352-903b-2df545b8d404" - ], - "request-id": [ - "ab25f7ab-5b73-4352-903b-2df545b8d404" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-correlation-request-id": [ - "cb234f7f-fc26-4886-a30a-41c133119719" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050146Z:cb234f7f-fc26-4886-a30a-41c133119719" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c69584f-adbe-4186-b26d-00483a8d2865" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:01:56 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7c69584f-adbe-4186-b26d-00483a8d2865" - ], - "request-id": [ - "7c69584f-adbe-4186-b26d-00483a8d2865" - ], - "elapsed-time": [ - "68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "5bc86d2c-ba9f-443a-b7af-2e4eecf3cb44" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050156Z:5bc86d2c-ba9f-443a-b7af-2e4eecf3cb44" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5385b26c-07b5-4617-ac77-709c682b06df" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:02:06 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5385b26c-07b5-4617-ac77-709c682b06df" - ], - "request-id": [ - "5385b26c-07b5-4617-ac77-709c682b06df" - ], - "elapsed-time": [ - "66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "16266912-2aeb-4d89-ac51-987fa40d3182" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050206Z:16266912-2aeb-4d89-ac51-987fa40d3182" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9716c533-3759-42d7-884d-8de83ec355ba" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:02:16 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9716c533-3759-42d7-884d-8de83ec355ba" - ], - "request-id": [ - "9716c533-3759-42d7-884d-8de83ec355ba" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "81ce15c0-a858-4a69-8f2f-cbebc5057ae9" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050217Z:81ce15c0-a858-4a69-8f2f-cbebc5057ae9" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58041ecb-77f9-4c9e-a1a9-0003f913930c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:02:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "58041ecb-77f9-4c9e-a1a9-0003f913930c" - ], - "request-id": [ - "58041ecb-77f9-4c9e-a1a9-0003f913930c" - ], - "elapsed-time": [ - "65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "8d34ed65-de3f-4bf2-897f-4a8adeac151a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050227Z:8d34ed65-de3f-4bf2-897f-4a8adeac151a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b39a188-8026-4a2b-b449-746b4332c68d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:02:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "7b39a188-8026-4a2b-b449-746b4332c68d" - ], - "request-id": [ - "7b39a188-8026-4a2b-b449-746b4332c68d" - ], - "elapsed-time": [ - "87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "d031f52f-2e43-49c3-a483-92ad72ef1761" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050238Z:d031f52f-2e43-49c3-a483-92ad72ef1761" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d3278c8a-f137-4d6a-a182-39dcd0ef4939" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:02:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d3278c8a-f137-4d6a-a182-39dcd0ef4939" - ], - "request-id": [ - "d3278c8a-f137-4d6a-a182-39dcd0ef4939" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "f54261e8-2dc3-48cd-99f1-79d1d0f599cf" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050248Z:f54261e8-2dc3-48cd-99f1-79d1d0f599cf" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "914ab1aa-87b0-479e-88a9-dbffa90ae251" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:02:57 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "914ab1aa-87b0-479e-88a9-dbffa90ae251" - ], - "request-id": [ - "914ab1aa-87b0-479e-88a9-dbffa90ae251" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "3b15c800-dda9-4f9c-b962-5d6da50a6af4" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050258Z:3b15c800-dda9-4f9c-b962-5d6da50a6af4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3043468e-24c0-4aa2-bff1-8baff47e65e4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:03:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3043468e-24c0-4aa2-bff1-8baff47e65e4" - ], - "request-id": [ - "3043468e-24c0-4aa2-bff1-8baff47e65e4" - ], - "elapsed-time": [ - "93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "64a5ec60-103e-459b-ba5f-0c0686ad0380" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050309Z:64a5ec60-103e-459b-ba5f-0c0686ad0380" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58f65f02-6d93-4620-a391-35033f385138" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:03:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "58f65f02-6d93-4620-a391-35033f385138" - ], - "request-id": [ - "58f65f02-6d93-4620-a391-35033f385138" - ], - "elapsed-time": [ - "62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "88ea6316-7220-43ae-a94b-1da43925efcf" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050319Z:88ea6316-7220-43ae-a94b-1da43925efcf" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ca8e2e7-bd4b-479c-9abf-c167377cd119" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:03:30 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2ca8e2e7-bd4b-479c-9abf-c167377cd119" - ], - "request-id": [ - "2ca8e2e7-bd4b-479c-9abf-c167377cd119" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "bd0b94bd-dd3a-4218-b2ec-d2b691c2f3ac" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050330Z:bd0b94bd-dd3a-4218-b2ec-d2b691c2f3ac" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51beabca-a13e-4ce9-b6e4-7a8187d61eed" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:03:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "51beabca-a13e-4ce9-b6e4-7a8187d61eed" - ], - "request-id": [ - "51beabca-a13e-4ce9-b6e4-7a8187d61eed" - ], - "elapsed-time": [ - "78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "ee0d88c2-9ff6-41b3-b740-5bc6f8d246fd" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050340Z:ee0d88c2-9ff6-41b3-b740-5bc6f8d246fd" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a187b29d-be20-4d53-a939-0f5e899c325c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:03:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "a187b29d-be20-4d53-a939-0f5e899c325c" - ], - "request-id": [ - "a187b29d-be20-4d53-a939-0f5e899c325c" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "b9bb6103-6d86-406e-a42a-3871e794f74c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050350Z:b9bb6103-6d86-406e-a42a-3871e794f74c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ea9f571-ad2f-428f-ab3c-b49dcd566214" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:04:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6ea9f571-ad2f-428f-ab3c-b49dcd566214" - ], - "request-id": [ - "6ea9f571-ad2f-428f-ab3c-b49dcd566214" - ], - "elapsed-time": [ - "85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "019ba18d-ac9b-4220-8e74-9b64dd2165e6" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050401Z:019ba18d-ac9b-4220-8e74-9b64dd2165e6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d014ca3c-8dc4-4e05-b9b3-e1f499af28d8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:04:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d014ca3c-8dc4-4e05-b9b3-e1f499af28d8" - ], - "request-id": [ - "d014ca3c-8dc4-4e05-b9b3-e1f499af28d8" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" - ], - "x-ms-correlation-request-id": [ - "a0e4580f-8af5-44cd-8d85-3c6220abc7b2" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050411Z:a0e4580f-8af5-44cd-8d85-3c6220abc7b2" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dab3500b-19fa-423b-aa3e-76ee01aa4d8a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:04:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "dab3500b-19fa-423b-aa3e-76ee01aa4d8a" - ], - "request-id": [ - "dab3500b-19fa-423b-aa3e-76ee01aa4d8a" - ], - "elapsed-time": [ - "117" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" - ], - "x-ms-correlation-request-id": [ - "56c766e3-247b-47f5-b189-634fcad193ab" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050422Z:56c766e3-247b-47f5-b189-634fcad193ab" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ac1fb127-b987-4713-8a4f-2947850ae168" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:04:32 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "ac1fb127-b987-4713-8a4f-2947850ae168" - ], - "request-id": [ - "ac1fb127-b987-4713-8a4f-2947850ae168" - ], - "elapsed-time": [ - "134" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" - ], - "x-ms-correlation-request-id": [ - "57f016c5-fa1b-4fdc-af5e-eeed3b18b310" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050432Z:57f016c5-fa1b-4fdc-af5e-eeed3b18b310" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "051397a6-098d-4738-901e-d2d5346a2fdd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:04:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "051397a6-098d-4738-901e-d2d5346a2fdd" - ], - "request-id": [ - "051397a6-098d-4738-901e-d2d5346a2fdd" - ], - "elapsed-time": [ - "81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "6f998743-a0aa-474a-bea1-b0820c558774" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050442Z:6f998743-a0aa-474a-bea1-b0820c558774" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c732dfad-34e8-4599-8deb-9eeeaeaaaebc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:04:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c732dfad-34e8-4599-8deb-9eeeaeaaaebc" - ], - "request-id": [ - "c732dfad-34e8-4599-8deb-9eeeaeaaaebc" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "0a6033be-4532-4ca0-a070-d0656ca6936d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050453Z:0a6033be-4532-4ca0-a070-d0656ca6936d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "efc638ec-1c33-446b-8b3c-3c3246865f55" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:05:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "efc638ec-1c33-446b-8b3c-3c3246865f55" - ], - "request-id": [ - "efc638ec-1c33-446b-8b3c-3c3246865f55" - ], - "elapsed-time": [ - "83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-correlation-request-id": [ - "ac1226e0-682b-45e4-8ff8-1e59ab444182" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050503Z:ac1226e0-682b-45e4-8ff8-1e59ab444182" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0225a58-4da2-4d69-9e26-84d5825d10ee" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:05:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d0225a58-4da2-4d69-9e26-84d5825d10ee" - ], - "request-id": [ - "d0225a58-4da2-4d69-9e26-84d5825d10ee" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" - ], - "x-ms-correlation-request-id": [ - "7e134560-f9c1-4a41-965c-9216d3024a3c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050514Z:7e134560-f9c1-4a41-965c-9216d3024a3c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd3bbb7f-000f-43e8-93bc-2515220c2a1f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:05:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "fd3bbb7f-000f-43e8-93bc-2515220c2a1f" - ], - "request-id": [ - "fd3bbb7f-000f-43e8-93bc-2515220c2a1f" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "acf38910-d951-4d6b-8498-a053e17e244b" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050524Z:acf38910-d951-4d6b-8498-a053e17e244b" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2ef56d48-7eb1-4ba6-8e8b-07844046e206" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:05:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2ef56d48-7eb1-4ba6-8e8b-07844046e206" - ], - "request-id": [ - "2ef56d48-7eb1-4ba6-8e8b-07844046e206" - ], - "elapsed-time": [ - "148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "68e7566b-1e63-481e-b125-1b40bdf579c5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050535Z:68e7566b-1e63-481e-b125-1b40bdf579c5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3d44d329-1371-414a-8885-f8ca6c7ca1c8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:05:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3d44d329-1371-414a-8885-f8ca6c7ca1c8" - ], - "request-id": [ - "3d44d329-1371-414a-8885-f8ca6c7ca1c8" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "0a8a0630-90b2-437b-bfaf-a3a566df0206" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050545Z:0a8a0630-90b2-437b-bfaf-a3a566df0206" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e1f6c6e0-6e8d-4344-ab56-aa2eb99b1573" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:05:55 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "e1f6c6e0-6e8d-4344-ab56-aa2eb99b1573" - ], - "request-id": [ - "e1f6c6e0-6e8d-4344-ab56-aa2eb99b1573" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" - ], - "x-ms-correlation-request-id": [ - "6aa63087-4c5a-4e4f-8167-aa8ea421f057" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050555Z:6aa63087-4c5a-4e4f-8167-aa8ea421f057" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "411d992b-eae6-4a28-b424-fb56794e39c5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:06:06 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "411d992b-eae6-4a28-b424-fb56794e39c5" - ], - "request-id": [ - "411d992b-eae6-4a28-b424-fb56794e39c5" - ], - "elapsed-time": [ - "71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" - ], - "x-ms-correlation-request-id": [ - "3cf4c9c7-b68a-4a91-b87f-b19dd1bd98cf" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050606Z:3cf4c9c7-b68a-4a91-b87f-b19dd1bd98cf" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1c4deac-4edc-4540-b2ca-0e7206a7c1e5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:06:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d1c4deac-4edc-4540-b2ca-0e7206a7c1e5" - ], - "request-id": [ - "d1c4deac-4edc-4540-b2ca-0e7206a7c1e5" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" - ], - "x-ms-correlation-request-id": [ - "998c047b-5e8f-4b30-8bfb-bb2659f084ba" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050616Z:998c047b-5e8f-4b30-8bfb-bb2659f084ba" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88c2b9d0-43b4-44b9-b13d-ba89c6d32d6f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:06:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "88c2b9d0-43b4-44b9-b13d-ba89c6d32d6f" - ], - "request-id": [ - "88c2b9d0-43b4-44b9-b13d-ba89c6d32d6f" - ], - "elapsed-time": [ - "74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" - ], - "x-ms-correlation-request-id": [ - "4ae85e1a-2a33-4286-bd2b-71a5d7f89a7d" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050626Z:4ae85e1a-2a33-4286-bd2b-71a5d7f89a7d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "21c93790-c86f-47f8-ab64-d7d2a8b7ecb6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:06:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "21c93790-c86f-47f8-ab64-d7d2a8b7ecb6" - ], - "request-id": [ - "21c93790-c86f-47f8-ab64-d7d2a8b7ecb6" - ], - "elapsed-time": [ - "373" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" - ], - "x-ms-correlation-request-id": [ - "3969fa7f-2750-4c9c-8d71-98925cfea5b4" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050637Z:3969fa7f-2750-4c9c-8d71-98925cfea5b4" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "062ba82c-7413-4778-9c7e-bb8c4e59cf22" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:06:47 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "062ba82c-7413-4778-9c7e-bb8c4e59cf22" - ], - "request-id": [ - "062ba82c-7413-4778-9c7e-bb8c4e59cf22" - ], - "elapsed-time": [ - "203" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "20a9dfe9-7f46-431c-b89d-a711a2a6e264" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050648Z:20a9dfe9-7f46-431c-b89d-a711a2a6e264" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4df2db41-dada-45f1-b929-eb11fd058949" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:06:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "4df2db41-dada-45f1-b929-eb11fd058949" - ], - "request-id": [ - "4df2db41-dada-45f1-b929-eb11fd058949" - ], - "elapsed-time": [ - "106" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" - ], - "x-ms-correlation-request-id": [ - "4edd92f0-0e50-497b-879e-7e542c5cd9c5" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050658Z:4edd92f0-0e50-497b-879e-7e542c5cd9c5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8dd7789a-3464-4425-a64c-800bc1d99f00" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:07:08 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "8dd7789a-3464-4425-a64c-800bc1d99f00" - ], - "request-id": [ - "8dd7789a-3464-4425-a64c-800bc1d99f00" - ], - "elapsed-time": [ - "127" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" - ], - "x-ms-correlation-request-id": [ - "31547877-e943-47e4-a684-d6f2abce05ca" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050709Z:31547877-e943-47e4-a684-d6f2abce05ca" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2849e4e5-8ae8-4829-a012-0d295159f20d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:07:18 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2849e4e5-8ae8-4829-a012-0d295159f20d" - ], - "request-id": [ - "2849e4e5-8ae8-4829-a012-0d295159f20d" - ], - "elapsed-time": [ - "73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" - ], - "x-ms-correlation-request-id": [ - "82439426-3d35-4361-b887-dca5b8d182d8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050719Z:82439426-3d35-4361-b887-dca5b8d182d8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d3a8febc-b1fc-46f8-be11-7872f3976f32" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:07:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d3a8febc-b1fc-46f8-be11-7872f3976f32" - ], - "request-id": [ - "d3a8febc-b1fc-46f8-be11-7872f3976f32" - ], - "elapsed-time": [ - "80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" - ], - "x-ms-correlation-request-id": [ - "4efb6dd0-5d48-4cf9-bfc0-c81f36fc3da3" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050729Z:4efb6dd0-5d48-4cf9-bfc0-c81f36fc3da3" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78945fd3-4a73-4ea8-9949-b3d88906e134" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:07:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "78945fd3-4a73-4ea8-9949-b3d88906e134" - ], - "request-id": [ - "78945fd3-4a73-4ea8-9949-b3d88906e134" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" - ], - "x-ms-correlation-request-id": [ - "8e3fd005-0f94-44d9-91c7-e9829d71c56a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050740Z:8e3fd005-0f94-44d9-91c7-e9829d71c56a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "14df50cb-9a80-4a9c-bfd6-4807dac1d353" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:07:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "14df50cb-9a80-4a9c-bfd6-4807dac1d353" - ], - "request-id": [ - "14df50cb-9a80-4a9c-bfd6-4807dac1d353" - ], - "elapsed-time": [ - "148" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" - ], - "x-ms-correlation-request-id": [ - "a2c32091-5e64-4d55-8ee5-686ecee5dfa0" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050750Z:a2c32091-5e64-4d55-8ee5-686ecee5dfa0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fd9637a6-c44d-4d26-9912-c61ebdf40a5a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:08:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "fd9637a6-c44d-4d26-9912-c61ebdf40a5a" - ], - "request-id": [ - "fd9637a6-c44d-4d26-9912-c61ebdf40a5a" - ], - "elapsed-time": [ - "72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" - ], - "x-ms-correlation-request-id": [ - "48e7f6ad-b10d-41e3-a7d0-b116cc38bf1c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050801Z:48e7f6ad-b10d-41e3-a7d0-b116cc38bf1c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f84145f8-f43c-43a6-98e7-86e7273f7a4a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:08:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f84145f8-f43c-43a6-98e7-86e7273f7a4a" - ], - "request-id": [ - "f84145f8-f43c-43a6-98e7-86e7273f7a4a" - ], - "elapsed-time": [ - "76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" - ], - "x-ms-correlation-request-id": [ - "3ba618c4-6418-40b5-a600-64e157b1a3bb" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050811Z:3ba618c4-6418-40b5-a600-64e157b1a3bb" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f3e8596-72d8-4d45-bde8-f4cccace4f43" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:08:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3f3e8596-72d8-4d45-bde8-f4cccace4f43" - ], - "request-id": [ - "3f3e8596-72d8-4d45-bde8-f4cccace4f43" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" - ], - "x-ms-correlation-request-id": [ - "34eb7253-6301-44d8-9fa7-eb7a6973bc37" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050821Z:34eb7253-6301-44d8-9fa7-eb7a6973bc37" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f030578-a296-4a17-abf9-570507c19b6a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:08:31 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "3f030578-a296-4a17-abf9-570507c19b6a" - ], - "request-id": [ - "3f030578-a296-4a17-abf9-570507c19b6a" - ], - "elapsed-time": [ - "67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" - ], - "x-ms-correlation-request-id": [ - "250dd38e-153c-4814-adcb-66c7b16f94d6" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050832Z:250dd38e-153c-4814-adcb-66c7b16f94d6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dfb50a5c-937d-492f-9c34-8caaad439a1e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:08:42 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "dfb50a5c-937d-492f-9c34-8caaad439a1e" - ], - "request-id": [ - "dfb50a5c-937d-492f-9c34-8caaad439a1e" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" - ], - "x-ms-correlation-request-id": [ - "f9613d88-68d7-4970-b9d2-61b4dd01a449" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050842Z:f9613d88-68d7-4970-b9d2-61b4dd01a449" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5222edac-c805-4ce6-99a1-feb78f457ab5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:08:52 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "5222edac-c805-4ce6-99a1-feb78f457ab5" - ], - "request-id": [ - "5222edac-c805-4ce6-99a1-feb78f457ab5" - ], - "elapsed-time": [ - "257" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" - ], - "x-ms-correlation-request-id": [ - "d3b4852d-5b44-4959-ad19-0ec8e1b6ebc6" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050853Z:d3b4852d-5b44-4959-ad19-0ec8e1b6ebc6" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9b40bf7d-e730-488b-8c79-b52de646724c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:09:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9b40bf7d-e730-488b-8c79-b52de646724c" - ], - "request-id": [ - "9b40bf7d-e730-488b-8c79-b52de646724c" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" - ], - "x-ms-correlation-request-id": [ - "243e2c64-05c7-468e-869f-898eadf33bf3" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050903Z:243e2c64-05c7-468e-869f-898eadf33bf3" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c53afedd-0c41-4370-9cc7-4a15683c9f86" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:09:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c53afedd-0c41-4370-9cc7-4a15683c9f86" - ], - "request-id": [ - "c53afedd-0c41-4370-9cc7-4a15683c9f86" - ], - "elapsed-time": [ - "117" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" - ], - "x-ms-correlation-request-id": [ - "898ac6b7-8b1e-49da-8889-1d97ada9c34a" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050913Z:898ac6b7-8b1e-49da-8889-1d97ada9c34a" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261965d2-3aae-4573-a324-96045f631e3e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:09:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "261965d2-3aae-4573-a324-96045f631e3e" - ], - "request-id": [ - "261965d2-3aae-4573-a324-96045f631e3e" - ], - "elapsed-time": [ - "69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" - ], - "x-ms-correlation-request-id": [ - "65b4c77d-fb8f-4ae4-b5eb-4f58281b3735" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050924Z:65b4c77d-fb8f-4ae4-b5eb-4f58281b3735" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6a751289-1936-44d1-b537-c39d91f78c86" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:09:34 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "6a751289-1936-44d1-b537-c39d91f78c86" - ], - "request-id": [ - "6a751289-1936-44d1-b537-c39d91f78c86" - ], - "elapsed-time": [ - "95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" - ], - "x-ms-correlation-request-id": [ - "53b16833-9f7b-42cb-ba8f-c4412dd13d9c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050934Z:53b16833-9f7b-42cb-ba8f-c4412dd13d9c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60299536-835c-469d-ba5e-57b9025e6dc2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:09:44 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "60299536-835c-469d-ba5e-57b9025e6dc2" - ], - "request-id": [ - "60299536-835c-469d-ba5e-57b9025e6dc2" - ], - "elapsed-time": [ - "68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" - ], - "x-ms-correlation-request-id": [ - "a8d06cc0-ebdd-4fc1-b14b-78a8ec72c551" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050945Z:a8d06cc0-ebdd-4fc1-b14b-78a8ec72c551" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "886141bd-0d21-41d1-8953-2ba6b0c8617b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:09:55 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "886141bd-0d21-41d1-8953-2ba6b0c8617b" - ], - "request-id": [ - "886141bd-0d21-41d1-8953-2ba6b0c8617b" - ], - "elapsed-time": [ - "77" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" - ], - "x-ms-correlation-request-id": [ - "9869942d-9b45-43ac-9449-e4fae22d143c" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T050955Z:9869942d-9b45-43ac-9449-e4fae22d143c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "29ba06b0-003b-4d50-9525-034231127940" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:10:05 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "29ba06b0-003b-4d50-9525-034231127940" - ], - "request-id": [ - "29ba06b0-003b-4d50-9525-034231127940" - ], - "elapsed-time": [ - "70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" - ], - "x-ms-correlation-request-id": [ - "411a7405-f6a5-439c-881e-9f6da59f0cea" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051005Z:411a7405-f6a5-439c-881e-9f6da59f0cea" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "35604224-d5b2-4d78-bba4-5c93d1e324f0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25009.03", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" - ] - }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 09 May 2017 05:10:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" - ], - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-ms-request-id": [ - "35604224-d5b2-4d78-bba4-5c93d1e324f0" - ], - "request-id": [ - "35604224-d5b2-4d78-bba4-5c93d1e324f0" - ], - "elapsed-time": [ - "86" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "9781192b-755c-4416-9d78-5ab57383d4d8" - ], - "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051016Z:9781192b-755c-4416-9d78-5ab57383d4d8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d62371a-3204-4aa3-8541-50691589d29a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11309,7 +2514,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:10:26 GMT" + "Wed, 13 Dec 2017 06:14:13 GMT" ], "Pragma": [ "no-cache" @@ -11318,20 +2523,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A51.8800855Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8d62371a-3204-4aa3-8541-50691589d29a" + "784a9087-9dc5-4255-8e7b-03bf5970b85c" ], "request-id": [ - "8d62371a-3204-4aa3-8541-50691589d29a" + "784a9087-9dc5-4255-8e7b-03bf5970b85c" ], "elapsed-time": [ - "95" + "106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11340,35 +2545,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14957" ], "x-ms-correlation-request-id": [ - "dd488ebe-9fea-4f5c-8783-cef1aa264d19" + "2d962c81-de39-4602-aca4-2a8e6b314781" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051026Z:dd488ebe-9fea-4f5c-8783-cef1aa264d19" + "CENTRALUS:20171213T061414Z:2d962c81-de39-4602-aca4-2a8e6b314781" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d7b405f8-28e6-41c0-81b1-c8dc009cf217" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11380,7 +2579,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:10:44 GMT" + "Wed, 13 Dec 2017 06:14:43 GMT" ], "Pragma": [ "no-cache" @@ -11389,20 +2588,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d7b405f8-28e6-41c0-81b1-c8dc009cf217" + "054687dc-1016-4274-aff1-33209d2331c9" ], "request-id": [ - "d7b405f8-28e6-41c0-81b1-c8dc009cf217" + "054687dc-1016-4274-aff1-33209d2331c9" ], "elapsed-time": [ - "88" + "61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11411,35 +2610,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14956" ], "x-ms-correlation-request-id": [ - "9ec0a2db-432b-4422-ad32-cbbf8920fa81" + "a9682f2d-47fa-45f5-90f4-ce8656476740" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051045Z:9ec0a2db-432b-4422-ad32-cbbf8920fa81" + "CENTRALUS:20171213T061444Z:a9682f2d-47fa-45f5-90f4-ce8656476740" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8a243f36-a3b6-4682-90e7-9102d2f4f7c0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11451,7 +2644,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:10:55 GMT" + "Wed, 13 Dec 2017 06:15:14 GMT" ], "Pragma": [ "no-cache" @@ -11460,20 +2653,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8a243f36-a3b6-4682-90e7-9102d2f4f7c0" + "e7df233f-bd9e-4a8f-bb05-e4e1b08fda65" ], "request-id": [ - "8a243f36-a3b6-4682-90e7-9102d2f4f7c0" + "e7df233f-bd9e-4a8f-bb05-e4e1b08fda65" ], "elapsed-time": [ - "225" + "57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11482,35 +2675,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14955" ], "x-ms-correlation-request-id": [ - "07a36e0c-9000-4202-a015-d0547f208e4b" + "8346cb27-30fa-43fb-aa07-dd4bfb1a6d0e" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051055Z:07a36e0c-9000-4202-a015-d0547f208e4b" + "CENTRALUS:20171213T061514Z:8346cb27-30fa-43fb-aa07-dd4bfb1a6d0e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e3209e7f-0cd4-4170-bffa-148fad216e19" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11522,7 +2709,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:11:05 GMT" + "Wed, 13 Dec 2017 06:15:44 GMT" ], "Pragma": [ "no-cache" @@ -11531,20 +2718,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e3209e7f-0cd4-4170-bffa-148fad216e19" + "feb4b73f-14e3-4314-bd7b-54197c63a905" ], "request-id": [ - "e3209e7f-0cd4-4170-bffa-148fad216e19" + "feb4b73f-14e3-4314-bd7b-54197c63a905" ], "elapsed-time": [ - "69" + "77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11553,35 +2740,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14954" ], "x-ms-correlation-request-id": [ - "ae1ade78-feeb-4203-b45c-35c5f7821070" + "3d9b6fec-bafd-4fa2-899b-a99b82e2f258" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051106Z:ae1ade78-feeb-4203-b45c-35c5f7821070" + "CENTRALUS:20171213T061544Z:3d9b6fec-bafd-4fa2-899b-a99b82e2f258" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5f5f0800-fb18-4588-adbf-8b2c89bc9dad" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11593,7 +2774,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:11:16 GMT" + "Wed, 13 Dec 2017 06:16:14 GMT" ], "Pragma": [ "no-cache" @@ -11602,20 +2783,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5f5f0800-fb18-4588-adbf-8b2c89bc9dad" + "d1143f20-2eb4-42ee-b16e-995238355800" ], "request-id": [ - "5f5f0800-fb18-4588-adbf-8b2c89bc9dad" + "d1143f20-2eb4-42ee-b16e-995238355800" ], "elapsed-time": [ - "130" + "244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11624,35 +2805,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14953" ], "x-ms-correlation-request-id": [ - "a4f38306-aa68-4632-81e8-b47ac20fd617" + "6033f897-02ac-4361-bc3c-69a3da4cd3f4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051116Z:a4f38306-aa68-4632-81e8-b47ac20fd617" + "CENTRALUS:20171213T061615Z:6033f897-02ac-4361-bc3c-69a3da4cd3f4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "93ea5586-e70d-4604-9a23-7bf9de281c29" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11664,7 +2839,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:11:26 GMT" + "Wed, 13 Dec 2017 06:16:45 GMT" ], "Pragma": [ "no-cache" @@ -11673,20 +2848,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "93ea5586-e70d-4604-9a23-7bf9de281c29" + "2d39ff66-4eb2-4774-b396-cd1417896adb" ], "request-id": [ - "93ea5586-e70d-4604-9a23-7bf9de281c29" + "2d39ff66-4eb2-4774-b396-cd1417896adb" ], "elapsed-time": [ - "99" + "117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11695,35 +2870,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14952" ], "x-ms-correlation-request-id": [ - "7906708a-1be3-4bd4-877e-a992bc2e6fb6" + "9110309b-bead-4d42-b6b9-d2829ba3c6b7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051126Z:7906708a-1be3-4bd4-877e-a992bc2e6fb6" + "CENTRALUS:20171213T061645Z:9110309b-bead-4d42-b6b9-d2829ba3c6b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7179a67a-cc48-4dc3-8cae-9f2d75549478" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11735,7 +2904,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:11:36 GMT" + "Wed, 13 Dec 2017 06:17:15 GMT" ], "Pragma": [ "no-cache" @@ -11744,20 +2913,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7179a67a-cc48-4dc3-8cae-9f2d75549478" + "47d37850-de27-48a1-a530-16b848141fd6" ], "request-id": [ - "7179a67a-cc48-4dc3-8cae-9f2d75549478" + "47d37850-de27-48a1-a530-16b848141fd6" ], "elapsed-time": [ - "77" + "107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11766,35 +2935,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14951" ], "x-ms-correlation-request-id": [ - "1a222a5c-dbf2-4087-be29-7109ae4c0049" + "ab7b4784-9e14-4f80-a713-79ac392dd740" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051137Z:1a222a5c-dbf2-4087-be29-7109ae4c0049" + "CENTRALUS:20171213T061715Z:ab7b4784-9e14-4f80-a713-79ac392dd740" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4ebbf3e9-fa3f-445a-9329-bc65fdb7347d" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11806,7 +2969,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:11:47 GMT" + "Wed, 13 Dec 2017 06:17:45 GMT" ], "Pragma": [ "no-cache" @@ -11815,20 +2978,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4ebbf3e9-fa3f-445a-9329-bc65fdb7347d" + "5865e025-f07a-4738-9363-04e813f7cc49" ], "request-id": [ - "4ebbf3e9-fa3f-445a-9329-bc65fdb7347d" + "5865e025-f07a-4738-9363-04e813f7cc49" ], "elapsed-time": [ - "82" + "92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11837,35 +3000,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14950" ], "x-ms-correlation-request-id": [ - "7e01796f-de46-4cdc-b5c6-1c287f2279b9" + "dc9315ac-9b62-42db-be7c-13ebb7f2e4fa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051147Z:7e01796f-de46-4cdc-b5c6-1c287f2279b9" + "CENTRALUS:20171213T061745Z:dc9315ac-9b62-42db-be7c-13ebb7f2e4fa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "eaec2b4c-b3ac-4b84-9ce8-d6474ad2414c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11877,7 +3034,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:11:57 GMT" + "Wed, 13 Dec 2017 06:18:16 GMT" ], "Pragma": [ "no-cache" @@ -11886,20 +3043,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "eaec2b4c-b3ac-4b84-9ce8-d6474ad2414c" + "fc593539-3c3e-4473-94ff-d0ceffdfa74a" ], "request-id": [ - "eaec2b4c-b3ac-4b84-9ce8-d6474ad2414c" + "fc593539-3c3e-4473-94ff-d0ceffdfa74a" ], "elapsed-time": [ - "66" + "185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11908,35 +3065,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14949" ], "x-ms-correlation-request-id": [ - "23a0149c-4ea4-404a-98c0-64f3a1a2fddb" + "53910e11-66e2-4b8e-b375-e3a13ec1900d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051158Z:23a0149c-4ea4-404a-98c0-64f3a1a2fddb" + "CENTRALUS:20171213T061816Z:53910e11-66e2-4b8e-b375-e3a13ec1900d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b7806639-8e88-4ddb-a331-53929a026b48" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -11948,7 +3099,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:12:07 GMT" + "Wed, 13 Dec 2017 06:18:46 GMT" ], "Pragma": [ "no-cache" @@ -11957,20 +3108,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b7806639-8e88-4ddb-a331-53929a026b48" + "188cc64c-d890-4fa6-93a8-cf8ec2bcf939" ], "request-id": [ - "b7806639-8e88-4ddb-a331-53929a026b48" + "188cc64c-d890-4fa6-93a8-cf8ec2bcf939" ], "elapsed-time": [ - "88" + "120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11979,35 +3130,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14948" ], "x-ms-correlation-request-id": [ - "5c342468-1703-4952-ac81-740325c2f59e" + "52f99c73-e2c1-4e03-a9c6-dc618ef2d897" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051208Z:5c342468-1703-4952-ac81-740325c2f59e" + "CENTRALUS:20171213T061846Z:52f99c73-e2c1-4e03-a9c6-dc618ef2d897" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b18d54a5-71ec-451d-98a7-73c69ed490e7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12019,7 +3164,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:12:18 GMT" + "Wed, 13 Dec 2017 06:19:16 GMT" ], "Pragma": [ "no-cache" @@ -12028,20 +3173,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b18d54a5-71ec-451d-98a7-73c69ed490e7" + "b2d14f27-2240-43f4-a0c3-fb4c031f917f" ], "request-id": [ - "b18d54a5-71ec-451d-98a7-73c69ed490e7" + "b2d14f27-2240-43f4-a0c3-fb4c031f917f" ], "elapsed-time": [ - "80" + "108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12050,35 +3195,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14947" ], "x-ms-correlation-request-id": [ - "715e45c1-665c-4848-8fcf-4060cd362bcb" + "44562585-48ee-4b98-99f8-538674f92207" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051218Z:715e45c1-665c-4848-8fcf-4060cd362bcb" + "CENTRALUS:20171213T061916Z:44562585-48ee-4b98-99f8-538674f92207" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "c06f5ca6-38ce-4f14-91e5-ff5e28407544" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12090,7 +3229,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:12:29 GMT" + "Wed, 13 Dec 2017 06:19:45 GMT" ], "Pragma": [ "no-cache" @@ -12099,20 +3238,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c06f5ca6-38ce-4f14-91e5-ff5e28407544" + "ea2fddd1-59a4-4a0f-ac46-9e93d400f04b" ], "request-id": [ - "c06f5ca6-38ce-4f14-91e5-ff5e28407544" + "ea2fddd1-59a4-4a0f-ac46-9e93d400f04b" ], "elapsed-time": [ - "69" + "105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12121,35 +3260,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14946" ], "x-ms-correlation-request-id": [ - "999a80c5-63bd-4aca-99f4-57162b3e445c" + "bec3cdfd-ea3b-4387-a9c8-097c8466d621" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051229Z:999a80c5-63bd-4aca-99f4-57162b3e445c" + "CENTRALUS:20171213T061946Z:bec3cdfd-ea3b-4387-a9c8-097c8466d621" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9edff2d3-455b-430f-b529-08b12eae535e" - ], - "accept-language": [ - "en-US" - ], + "RequestBody": "", + "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12161,7 +3294,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:12:39 GMT" + "Wed, 13 Dec 2017 06:20:16 GMT" ], "Pragma": [ "no-cache" @@ -12170,20 +3303,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9edff2d3-455b-430f-b529-08b12eae535e" + "c140c8b0-615f-426e-b769-c0e4797f6391" ], "request-id": [ - "9edff2d3-455b-430f-b529-08b12eae535e" + "c140c8b0-615f-426e-b769-c0e4797f6391" ], "elapsed-time": [ - "68" + "282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12192,35 +3325,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14945" ], "x-ms-correlation-request-id": [ - "2c5bead4-ca3f-4cc3-960a-424f5c77786b" + "f7424155-878e-4f62-955c-9cc34aa7e987" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051239Z:2c5bead4-ca3f-4cc3-960a-424f5c77786b" + "CENTRALUS:20171213T062017Z:f7424155-878e-4f62-955c-9cc34aa7e987" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8a8e6c64-1d0a-4336-ae3c-a8b1d5616003" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12232,7 +3359,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:12:50 GMT" + "Wed, 13 Dec 2017 06:20:46 GMT" ], "Pragma": [ "no-cache" @@ -12241,20 +3368,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8a8e6c64-1d0a-4336-ae3c-a8b1d5616003" + "8995921f-d0fd-47c2-b28d-d2a6062cea57" ], "request-id": [ - "8a8e6c64-1d0a-4336-ae3c-a8b1d5616003" + "8995921f-d0fd-47c2-b28d-d2a6062cea57" ], "elapsed-time": [ - "66" + "147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12263,35 +3390,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14944" ], "x-ms-correlation-request-id": [ - "c80b6324-95ab-477a-9d3d-a12a9a112aca" + "c65fa072-b1c3-4255-8bce-67e2cbedf4a2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051250Z:c80b6324-95ab-477a-9d3d-a12a9a112aca" + "CENTRALUS:20171213T062047Z:c65fa072-b1c3-4255-8bce-67e2cbedf4a2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1d9d4025-0b87-4fec-b3da-ba83de3e19bd" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12303,7 +3424,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:13:00 GMT" + "Wed, 13 Dec 2017 06:21:17 GMT" ], "Pragma": [ "no-cache" @@ -12312,20 +3433,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1d9d4025-0b87-4fec-b3da-ba83de3e19bd" + "9dd4c3e3-243a-4768-a33d-db69f0ee784b" ], "request-id": [ - "1d9d4025-0b87-4fec-b3da-ba83de3e19bd" + "9dd4c3e3-243a-4768-a33d-db69f0ee784b" ], "elapsed-time": [ - "72" + "79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12334,35 +3455,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14943" ], "x-ms-correlation-request-id": [ - "e509e37b-30cd-41ef-9869-14c4a21fe260" + "4e67994a-3598-40ca-9840-69405ab96ce1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051300Z:e509e37b-30cd-41ef-9869-14c4a21fe260" + "CENTRALUS:20171213T062117Z:4e67994a-3598-40ca-9840-69405ab96ce1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7b04f1ee-8341-4775-966b-6b2c7e155c67" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12374,7 +3489,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:13:10 GMT" + "Wed, 13 Dec 2017 06:21:47 GMT" ], "Pragma": [ "no-cache" @@ -12383,20 +3498,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7b04f1ee-8341-4775-966b-6b2c7e155c67" + "f4cab68f-e165-493d-9da7-c68b60ad7fe1" ], "request-id": [ - "7b04f1ee-8341-4775-966b-6b2c7e155c67" + "f4cab68f-e165-493d-9da7-c68b60ad7fe1" ], "elapsed-time": [ - "80" + "106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12405,35 +3520,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14942" ], "x-ms-correlation-request-id": [ - "1ec93e9e-487d-48b8-82df-1a2ddde414ba" + "a489775c-8565-4470-bce8-22340f6b3528" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051310Z:1ec93e9e-487d-48b8-82df-1a2ddde414ba" + "CENTRALUS:20171213T062147Z:a489775c-8565-4470-bce8-22340f6b3528" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "aa77de1c-677e-4df0-993c-2f767e9b92ae" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12445,7 +3554,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:13:20 GMT" + "Wed, 13 Dec 2017 06:22:18 GMT" ], "Pragma": [ "no-cache" @@ -12454,20 +3563,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "aa77de1c-677e-4df0-993c-2f767e9b92ae" + "5c0c656a-c8d4-438b-b47e-ea166f99a8ed" ], "request-id": [ - "aa77de1c-677e-4df0-993c-2f767e9b92ae" + "5c0c656a-c8d4-438b-b47e-ea166f99a8ed" ], "elapsed-time": [ - "68" + "166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12476,35 +3585,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14941" ], "x-ms-correlation-request-id": [ - "23b088f5-d5ce-4db1-9154-d845c9a7e76f" + "89e61f7d-5f61-4211-9359-c791cc97c3e4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051321Z:23b088f5-d5ce-4db1-9154-d845c9a7e76f" + "CENTRALUS:20171213T062218Z:89e61f7d-5f61-4211-9359-c791cc97c3e4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2753b17b-f69a-4b9d-b052-9a63096d7a27" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12516,7 +3619,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:13:31 GMT" + "Wed, 13 Dec 2017 06:22:48 GMT" ], "Pragma": [ "no-cache" @@ -12525,20 +3628,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2753b17b-f69a-4b9d-b052-9a63096d7a27" + "358227d3-5cca-495d-94f3-921cb803fdad" ], "request-id": [ - "2753b17b-f69a-4b9d-b052-9a63096d7a27" + "358227d3-5cca-495d-94f3-921cb803fdad" ], "elapsed-time": [ - "219" + "214" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12547,35 +3650,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14940" ], "x-ms-correlation-request-id": [ - "b46925a3-6b95-4979-803c-d33d41c4dcc2" + "5b742e82-74c6-45c0-b70d-2ea6d934b4b4" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051331Z:b46925a3-6b95-4979-803c-d33d41c4dcc2" + "CENTRALUS:20171213T062248Z:5b742e82-74c6-45c0-b70d-2ea6d934b4b4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9b84db3c-96d1-4f0a-81a0-a5df0ee4f193" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12587,7 +3684,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:13:41 GMT" + "Wed, 13 Dec 2017 06:23:18 GMT" ], "Pragma": [ "no-cache" @@ -12596,20 +3693,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9b84db3c-96d1-4f0a-81a0-a5df0ee4f193" + "f4852d35-1437-4be2-89ad-f38f2d367083" ], "request-id": [ - "9b84db3c-96d1-4f0a-81a0-a5df0ee4f193" + "f4852d35-1437-4be2-89ad-f38f2d367083" ], "elapsed-time": [ - "75" + "168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12618,35 +3715,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14939" ], "x-ms-correlation-request-id": [ - "12882c84-bb4c-4484-b549-e602e382e63b" + "3384ea16-4840-4b65-af67-aa3954bcd630" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051342Z:12882c84-bb4c-4484-b549-e602e382e63b" + "CENTRALUS:20171213T062318Z:3384ea16-4840-4b65-af67-aa3954bcd630" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "f10df670-7239-42ab-805c-b2393f6f8e57" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12658,7 +3749,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:13:52 GMT" + "Wed, 13 Dec 2017 06:23:49 GMT" ], "Pragma": [ "no-cache" @@ -12667,20 +3758,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f10df670-7239-42ab-805c-b2393f6f8e57" + "1d617266-8fb6-4089-96ab-1c0a860be9fc" ], "request-id": [ - "f10df670-7239-42ab-805c-b2393f6f8e57" + "1d617266-8fb6-4089-96ab-1c0a860be9fc" ], "elapsed-time": [ - "72" + "126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12689,35 +3780,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14938" ], "x-ms-correlation-request-id": [ - "7e2c22da-e139-4494-b0b9-0e2551ebb173" + "25b0ded5-8970-4694-81c4-ae2c020f4fa7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051352Z:7e2c22da-e139-4494-b0b9-0e2551ebb173" + "CENTRALUS:20171213T062349Z:25b0ded5-8970-4694-81c4-ae2c020f4fa7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4b018bcc-250a-4b00-a2ab-fcacd3203a36" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12729,7 +3814,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:14:02 GMT" + "Wed, 13 Dec 2017 06:24:22 GMT" ], "Pragma": [ "no-cache" @@ -12738,20 +3823,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4b018bcc-250a-4b00-a2ab-fcacd3203a36" + "8c6507da-6335-49b4-bc5d-f51615c20e46" ], "request-id": [ - "4b018bcc-250a-4b00-a2ab-fcacd3203a36" + "8c6507da-6335-49b4-bc5d-f51615c20e46" ], "elapsed-time": [ - "71" + "231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12760,35 +3845,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14937" ], "x-ms-correlation-request-id": [ - "cf264e25-09ad-4c16-b9e6-6176f56f1a3b" + "f80b462d-41fd-44c2-83b1-1804fa14ad70" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051402Z:cf264e25-09ad-4c16-b9e6-6176f56f1a3b" + "CENTRALUS:20171213T062422Z:f80b462d-41fd-44c2-83b1-1804fa14ad70" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a7554a1a-dfde-4ca9-a980-7f644d3cc78b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12800,7 +3879,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:14:13 GMT" + "Wed, 13 Dec 2017 06:24:52 GMT" ], "Pragma": [ "no-cache" @@ -12809,20 +3888,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a7554a1a-dfde-4ca9-a980-7f644d3cc78b" + "09e6048b-e689-439c-9ebf-9ac73452b961" ], "request-id": [ - "a7554a1a-dfde-4ca9-a980-7f644d3cc78b" + "09e6048b-e689-439c-9ebf-9ac73452b961" ], "elapsed-time": [ - "71" + "498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12831,35 +3910,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14936" ], "x-ms-correlation-request-id": [ - "d8d76039-8da3-49db-be63-9652887aae72" + "8acf55f4-d41c-4f5e-9e33-ad9115278bd8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051413Z:d8d76039-8da3-49db-be63-9652887aae72" + "CENTRALUS:20171213T062453Z:8acf55f4-d41c-4f5e-9e33-ad9115278bd8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "83e363f8-abf8-41b8-b7c3-3f25d729f3b0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12871,7 +3944,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:14:22 GMT" + "Wed, 13 Dec 2017 06:25:23 GMT" ], "Pragma": [ "no-cache" @@ -12880,20 +3953,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "83e363f8-abf8-41b8-b7c3-3f25d729f3b0" + "34911e5a-3861-4cc9-981d-fbac19498cfa" ], "request-id": [ - "83e363f8-abf8-41b8-b7c3-3f25d729f3b0" + "34911e5a-3861-4cc9-981d-fbac19498cfa" ], "elapsed-time": [ - "82" + "72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12902,35 +3975,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14935" ], "x-ms-correlation-request-id": [ - "a7b5bcc3-5c54-479a-9d08-f140af9c08a2" + "7163eae6-3beb-4068-8b43-44c897426531" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051423Z:a7b5bcc3-5c54-479a-9d08-f140af9c08a2" + "CENTRALUS:20171213T062523Z:7163eae6-3beb-4068-8b43-44c897426531" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d3bb57d3-ed38-4ca3-836c-1b19144a24a7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -12942,7 +4009,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:14:33 GMT" + "Wed, 13 Dec 2017 06:25:53 GMT" ], "Pragma": [ "no-cache" @@ -12951,20 +4018,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d3bb57d3-ed38-4ca3-836c-1b19144a24a7" + "1330d162-2a65-43fd-9159-9088739e165f" ], "request-id": [ - "d3bb57d3-ed38-4ca3-836c-1b19144a24a7" + "1330d162-2a65-43fd-9159-9088739e165f" ], "elapsed-time": [ - "157" + "80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12973,35 +4040,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14934" ], "x-ms-correlation-request-id": [ - "7143eb04-05e9-4223-bdea-f86878887316" + "d8beee92-ec60-4c99-8042-d2bea6a0d5fc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051434Z:7143eb04-05e9-4223-bdea-f86878887316" + "CENTRALUS:20171213T062553Z:d8beee92-ec60-4c99-8042-d2bea6a0d5fc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2b118712-63c2-410f-9796-9e25244eab4c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13013,7 +4074,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:14:43 GMT" + "Wed, 13 Dec 2017 06:26:23 GMT" ], "Pragma": [ "no-cache" @@ -13022,20 +4083,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2b118712-63c2-410f-9796-9e25244eab4c" + "6bdc641d-c3e5-43ed-8caf-e36a6f06fbbd" ], "request-id": [ - "2b118712-63c2-410f-9796-9e25244eab4c" + "6bdc641d-c3e5-43ed-8caf-e36a6f06fbbd" ], "elapsed-time": [ - "84" + "141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13044,35 +4105,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14933" ], "x-ms-correlation-request-id": [ - "da119636-2e7a-4880-a009-636211aeda47" + "ff329ac0-5372-4172-ab50-b8bcb50330c9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051444Z:da119636-2e7a-4880-a009-636211aeda47" + "CENTRALUS:20171213T062623Z:ff329ac0-5372-4172-ab50-b8bcb50330c9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "68f50dd3-79b9-4ec5-8f5e-9ba65a660fcf" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13084,7 +4139,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:14:54 GMT" + "Wed, 13 Dec 2017 06:26:53 GMT" ], "Pragma": [ "no-cache" @@ -13093,20 +4148,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "68f50dd3-79b9-4ec5-8f5e-9ba65a660fcf" + "bbc65e10-a3fb-45d5-8238-faaa8cbf365a" ], "request-id": [ - "68f50dd3-79b9-4ec5-8f5e-9ba65a660fcf" + "bbc65e10-a3fb-45d5-8238-faaa8cbf365a" ], "elapsed-time": [ - "75" + "80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13115,35 +4170,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14932" ], "x-ms-correlation-request-id": [ - "999e9db7-1eb1-415a-af5a-53aa82eb358f" + "cf5352c4-8f6b-4488-85ac-14c16508a7c2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051454Z:999e9db7-1eb1-415a-af5a-53aa82eb358f" + "CENTRALUS:20171213T062653Z:cf5352c4-8f6b-4488-85ac-14c16508a7c2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "a825d239-6932-439d-becd-ab451b6b34b7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13155,7 +4204,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:15:05 GMT" + "Wed, 13 Dec 2017 06:27:23 GMT" ], "Pragma": [ "no-cache" @@ -13164,20 +4213,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a825d239-6932-439d-becd-ab451b6b34b7" + "6ee1ca84-1bf6-4ab5-aa4c-659d6a0cf455" ], "request-id": [ - "a825d239-6932-439d-becd-ab451b6b34b7" + "6ee1ca84-1bf6-4ab5-aa4c-659d6a0cf455" ], "elapsed-time": [ - "68" + "122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13186,35 +4235,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14931" ], "x-ms-correlation-request-id": [ - "66ec8f4b-a21c-4a05-8b67-892e6dad19f7" + "ffc8f597-e893-4a9f-a1a7-ec99109a5c08" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051505Z:66ec8f4b-a21c-4a05-8b67-892e6dad19f7" + "CENTRALUS:20171213T062724Z:ffc8f597-e893-4a9f-a1a7-ec99109a5c08" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "02181fb0-2852-4c6f-aa1e-a9e3b63fbe9a" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13226,7 +4269,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:15:15 GMT" + "Wed, 13 Dec 2017 06:27:53 GMT" ], "Pragma": [ "no-cache" @@ -13235,20 +4278,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "02181fb0-2852-4c6f-aa1e-a9e3b63fbe9a" + "73643c14-b93e-4dab-9ecc-b6c96ca315e2" ], "request-id": [ - "02181fb0-2852-4c6f-aa1e-a9e3b63fbe9a" + "73643c14-b93e-4dab-9ecc-b6c96ca315e2" ], "elapsed-time": [ - "69" + "84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13257,35 +4300,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14930" ], "x-ms-correlation-request-id": [ - "94d6541e-4374-4ea3-97d6-a35f3aefbc35" + "0e6ab6f9-0a6b-40ea-9866-fd387001b6fa" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051515Z:94d6541e-4374-4ea3-97d6-a35f3aefbc35" + "CENTRALUS:20171213T062754Z:0e6ab6f9-0a6b-40ea-9866-fd387001b6fa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4248b867-cf83-42ce-801f-2213b7bd5a56" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13297,7 +4334,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:15:26 GMT" + "Wed, 13 Dec 2017 06:28:24 GMT" ], "Pragma": [ "no-cache" @@ -13306,20 +4343,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4248b867-cf83-42ce-801f-2213b7bd5a56" + "f243ccb3-b7ee-4041-a94d-a358eb5ef0d8" ], "request-id": [ - "4248b867-cf83-42ce-801f-2213b7bd5a56" + "f243ccb3-b7ee-4041-a94d-a358eb5ef0d8" ], "elapsed-time": [ - "802" + "971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13328,35 +4365,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14929" ], "x-ms-correlation-request-id": [ - "a17a7c44-41d2-404c-a144-4b6937feca28" + "01a82ecc-59e8-494e-983e-bf43ad39d3ba" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051526Z:a17a7c44-41d2-404c-a144-4b6937feca28" + "CENTRALUS:20171213T062825Z:01a82ecc-59e8-494e-983e-bf43ad39d3ba" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e0c9eafe-55bd-4c74-9619-a9566082177b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13368,7 +4399,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:15:36 GMT" + "Wed, 13 Dec 2017 06:28:55 GMT" ], "Pragma": [ "no-cache" @@ -13377,20 +4408,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e0c9eafe-55bd-4c74-9619-a9566082177b" + "904cce70-f080-4245-ad08-57bb4d16fdd9" ], "request-id": [ - "e0c9eafe-55bd-4c74-9619-a9566082177b" + "904cce70-f080-4245-ad08-57bb4d16fdd9" ], "elapsed-time": [ - "335" + "145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13399,35 +4430,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14928" ], "x-ms-correlation-request-id": [ - "1f63b1cb-93ad-48d9-8f1b-fbd8e67663bc" + "10cb43e5-4def-405e-9f1c-5af60619f6d8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051537Z:1f63b1cb-93ad-48d9-8f1b-fbd8e67663bc" + "CENTRALUS:20171213T062856Z:10cb43e5-4def-405e-9f1c-5af60619f6d8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e86b6d54-4c98-48db-8bcc-74d21aa90059" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13439,7 +4464,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:15:47 GMT" + "Wed, 13 Dec 2017 06:29:32 GMT" ], "Pragma": [ "no-cache" @@ -13448,20 +4473,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e86b6d54-4c98-48db-8bcc-74d21aa90059" + "8991ce2a-10f3-4a96-876a-009029b4cda7" ], "request-id": [ - "e86b6d54-4c98-48db-8bcc-74d21aa90059" + "8991ce2a-10f3-4a96-876a-009029b4cda7" ], "elapsed-time": [ - "72" + "125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13470,35 +4495,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14927" ], "x-ms-correlation-request-id": [ - "9441b342-6648-4203-b97b-1b8e1ed5061b" + "b00bd062-ed40-4073-88b3-c545f4eb4398" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051547Z:9441b342-6648-4203-b97b-1b8e1ed5061b" + "CENTRALUS:20171213T062932Z:b00bd062-ed40-4073-88b3-c545f4eb4398" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8534e8a9-86d5-49fe-9122-ed8e7edde834" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13510,7 +4529,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:15:58 GMT" + "Wed, 13 Dec 2017 06:30:01 GMT" ], "Pragma": [ "no-cache" @@ -13519,20 +4538,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8534e8a9-86d5-49fe-9122-ed8e7edde834" + "8ec7ffbd-eff7-4430-a301-3767ae252e9b" ], "request-id": [ - "8534e8a9-86d5-49fe-9122-ed8e7edde834" + "8ec7ffbd-eff7-4430-a301-3767ae252e9b" ], "elapsed-time": [ - "381" + "86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13541,35 +4560,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14926" ], "x-ms-correlation-request-id": [ - "b2ac2314-e0df-4654-ab71-725076be53d7" + "6845384c-3b57-4908-91d7-4533d3050715" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051558Z:b2ac2314-e0df-4654-ab71-725076be53d7" + "CENTRALUS:20171213T063002Z:6845384c-3b57-4908-91d7-4533d3050715" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "61ac4209-7e9a-4cfe-8d79-fdda81bb6d95" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13581,7 +4594,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:16:08 GMT" + "Wed, 13 Dec 2017 06:30:32 GMT" ], "Pragma": [ "no-cache" @@ -13590,20 +4603,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "61ac4209-7e9a-4cfe-8d79-fdda81bb6d95" + "d66ab891-195d-47ed-9c74-0fe47a725f34" ], "request-id": [ - "61ac4209-7e9a-4cfe-8d79-fdda81bb6d95" + "d66ab891-195d-47ed-9c74-0fe47a725f34" ], "elapsed-time": [ - "79" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13612,35 +4625,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14925" ], "x-ms-correlation-request-id": [ - "40513d34-81b0-406c-be95-49dbfc162f24" + "aea94a47-1ac0-42b3-9032-b4fecacbabb0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051608Z:40513d34-81b0-406c-be95-49dbfc162f24" + "CENTRALUS:20171213T063032Z:aea94a47-1ac0-42b3-9032-b4fecacbabb0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "d23481a5-bc11-42f7-9106-d1a8cbf88fd7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13652,7 +4659,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:16:18 GMT" + "Wed, 13 Dec 2017 06:31:02 GMT" ], "Pragma": [ "no-cache" @@ -13661,20 +4668,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d23481a5-bc11-42f7-9106-d1a8cbf88fd7" + "b525fe86-bd7d-435b-8371-7783c0c2b4b7" ], "request-id": [ - "d23481a5-bc11-42f7-9106-d1a8cbf88fd7" + "b525fe86-bd7d-435b-8371-7783c0c2b4b7" ], "elapsed-time": [ - "65" + "90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13683,35 +4690,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14924" ], "x-ms-correlation-request-id": [ - "748e1d19-69e5-485b-b263-b5f644d44f24" + "1d56587e-5c95-4004-84d8-63fd893549f5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051619Z:748e1d19-69e5-485b-b263-b5f644d44f24" + "CENTRALUS:20171213T063102Z:1d56587e-5c95-4004-84d8-63fd893549f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0c3f660c-8bc5-484a-8759-db5f8ed2a54e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13723,7 +4724,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:16:29 GMT" + "Wed, 13 Dec 2017 06:31:33 GMT" ], "Pragma": [ "no-cache" @@ -13732,20 +4733,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "0c3f660c-8bc5-484a-8759-db5f8ed2a54e" + "52658a48-dfe0-45d3-aa1d-40f697a88222" ], "request-id": [ - "0c3f660c-8bc5-484a-8759-db5f8ed2a54e" + "52658a48-dfe0-45d3-aa1d-40f697a88222" ], "elapsed-time": [ - "72" + "106" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13754,35 +4755,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14923" ], "x-ms-correlation-request-id": [ - "2e40269e-6eb2-463e-895e-e06d7a86bcca" + "f1724cf9-ec26-485c-9fae-f87855047d8c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051629Z:2e40269e-6eb2-463e-895e-e06d7a86bcca" + "CENTRALUS:20171213T063133Z:f1724cf9-ec26-485c-9fae-f87855047d8c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "17af2c11-ec3c-4b74-92d5-bd3474221c0e" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13794,7 +4789,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:16:39 GMT" + "Wed, 13 Dec 2017 06:32:03 GMT" ], "Pragma": [ "no-cache" @@ -13803,20 +4798,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "17af2c11-ec3c-4b74-92d5-bd3474221c0e" + "3dd629f1-8a05-450c-95ec-1c433539a8fe" ], "request-id": [ - "17af2c11-ec3c-4b74-92d5-bd3474221c0e" + "3dd629f1-8a05-450c-95ec-1c433539a8fe" ], "elapsed-time": [ - "77" + "96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13825,35 +4820,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14922" ], "x-ms-correlation-request-id": [ - "4cdb0032-3e08-42e4-a16d-6e956e5c71f4" + "8a3449cd-b1a9-41cb-95e2-1e9a443ebd81" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051640Z:4cdb0032-3e08-42e4-a16d-6e956e5c71f4" + "CENTRALUS:20171213T063203Z:8a3449cd-b1a9-41cb-95e2-1e9a443ebd81" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8f643b51-f0be-40fc-8796-de800c94bde0" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13865,7 +4854,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:16:49 GMT" + "Wed, 13 Dec 2017 06:32:33 GMT" ], "Pragma": [ "no-cache" @@ -13874,20 +4863,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8f643b51-f0be-40fc-8796-de800c94bde0" + "d87a3a68-f59a-4fdb-b780-33abce32f02e" ], "request-id": [ - "8f643b51-f0be-40fc-8796-de800c94bde0" + "d87a3a68-f59a-4fdb-b780-33abce32f02e" ], "elapsed-time": [ - "193" + "98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13896,35 +4885,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14921" ], "x-ms-correlation-request-id": [ - "b7077828-1993-4f7d-8a31-2ba20be0edf0" + "8235f574-f78c-4ed6-8e02-e3f3de17fe29" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051650Z:b7077828-1993-4f7d-8a31-2ba20be0edf0" + "CENTRALUS:20171213T063233Z:8235f574-f78c-4ed6-8e02-e3f3de17fe29" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "10230473-e1c4-4ecf-a0e1-f73fa9d1ac01" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13936,7 +4919,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:17:01 GMT" + "Wed, 13 Dec 2017 06:33:04 GMT" ], "Pragma": [ "no-cache" @@ -13945,20 +4928,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "10230473-e1c4-4ecf-a0e1-f73fa9d1ac01" + "6851be42-646b-406e-87e1-5734ed304f92" ], "request-id": [ - "10230473-e1c4-4ecf-a0e1-f73fa9d1ac01" + "6851be42-646b-406e-87e1-5734ed304f92" ], "elapsed-time": [ - "71" + "125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13967,35 +4950,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14920" ], "x-ms-correlation-request-id": [ - "b0699dfe-b136-4f5f-b305-b652960ead01" + "cf6b61c3-58c4-4961-8745-255fcfe90c71" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051701Z:b0699dfe-b136-4f5f-b305-b652960ead01" + "CENTRALUS:20171213T063304Z:cf6b61c3-58c4-4961-8745-255fcfe90c71" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ac9e9443-3645-482e-bb48-a7db77d4fb10" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14007,7 +4984,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:17:11 GMT" + "Wed, 13 Dec 2017 06:33:33 GMT" ], "Pragma": [ "no-cache" @@ -14016,20 +4993,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ac9e9443-3645-482e-bb48-a7db77d4fb10" + "93627eb0-1e68-4880-ae28-810504b01e3f" ], "request-id": [ - "ac9e9443-3645-482e-bb48-a7db77d4fb10" + "93627eb0-1e68-4880-ae28-810504b01e3f" ], "elapsed-time": [ - "65" + "78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14038,35 +5015,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14919" ], "x-ms-correlation-request-id": [ - "163a91db-ad9c-4dc4-af4e-91b1a75fdcef" + "e5d58522-707f-42ff-a87c-575456708949" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051711Z:163a91db-ad9c-4dc4-af4e-91b1a75fdcef" + "CENTRALUS:20171213T063334Z:e5d58522-707f-42ff-a87c-575456708949" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "b772414e-5c5d-4e71-8049-b687082ae252" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14078,7 +5049,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:17:20 GMT" + "Wed, 13 Dec 2017 06:34:04 GMT" ], "Pragma": [ "no-cache" @@ -14087,20 +5058,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b772414e-5c5d-4e71-8049-b687082ae252" + "2229bfb7-8caf-40ee-82d4-9bd83147590b" ], "request-id": [ - "b772414e-5c5d-4e71-8049-b687082ae252" + "2229bfb7-8caf-40ee-82d4-9bd83147590b" ], "elapsed-time": [ - "97" + "130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14109,35 +5080,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14918" ], "x-ms-correlation-request-id": [ - "e2504777-50d0-4d46-84de-a47f77748a11" + "c64689d0-061d-43e5-82e5-7cade02a96f5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051721Z:e2504777-50d0-4d46-84de-a47f77748a11" + "CENTRALUS:20171213T063404Z:c64689d0-061d-43e5-82e5-7cade02a96f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4481b880-ec16-4f53-903b-1ad5adbf4c86" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14149,7 +5114,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:17:31 GMT" + "Wed, 13 Dec 2017 06:34:34 GMT" ], "Pragma": [ "no-cache" @@ -14158,20 +5123,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4481b880-ec16-4f53-903b-1ad5adbf4c86" + "f80ff7c3-0a0a-41d1-864c-89d7a478973a" ], "request-id": [ - "4481b880-ec16-4f53-903b-1ad5adbf4c86" + "f80ff7c3-0a0a-41d1-864c-89d7a478973a" ], "elapsed-time": [ - "132" + "139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14180,35 +5145,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14917" ], "x-ms-correlation-request-id": [ - "178ddef1-5670-4df7-97c3-d21be035a6c5" + "1d0d0e82-dfc6-42e0-b8f7-bbcb81a388de" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051732Z:178ddef1-5670-4df7-97c3-d21be035a6c5" + "CENTRALUS:20171213T063434Z:1d0d0e82-dfc6-42e0-b8f7-bbcb81a388de" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "da6f98bc-6ded-492f-a60f-5fc206e885e8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14220,7 +5179,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:17:42 GMT" + "Wed, 13 Dec 2017 06:35:04 GMT" ], "Pragma": [ "no-cache" @@ -14229,20 +5188,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "da6f98bc-6ded-492f-a60f-5fc206e885e8" + "de5e61bb-99d4-45bd-8528-5865cf724fc9" ], "request-id": [ - "da6f98bc-6ded-492f-a60f-5fc206e885e8" + "de5e61bb-99d4-45bd-8528-5865cf724fc9" ], "elapsed-time": [ - "78" + "91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14251,35 +5210,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14916" ], "x-ms-correlation-request-id": [ - "8172e547-5c39-4ba8-afe2-0192a725be24" + "83fdadda-9e55-4a05-8129-a4d62fc8d53b" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051742Z:8172e547-5c39-4ba8-afe2-0192a725be24" + "CENTRALUS:20171213T063505Z:83fdadda-9e55-4a05-8129-a4d62fc8d53b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f9bb146-0358-4aef-8d72-9e833664e025" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14291,7 +5244,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:17:52 GMT" + "Wed, 13 Dec 2017 06:35:35 GMT" ], "Pragma": [ "no-cache" @@ -14300,20 +5253,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6f9bb146-0358-4aef-8d72-9e833664e025" + "6e9643ef-1b9e-45ad-b90e-e793c249295a" ], "request-id": [ - "6f9bb146-0358-4aef-8d72-9e833664e025" + "6e9643ef-1b9e-45ad-b90e-e793c249295a" ], "elapsed-time": [ - "258" + "307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14322,35 +5275,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14915" ], "x-ms-correlation-request-id": [ - "c344df41-01d7-4592-8141-9eb0198e933f" + "869c7f61-5724-4eab-8334-b3024b39d507" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051753Z:c344df41-01d7-4592-8141-9eb0198e933f" + "CENTRALUS:20171213T063535Z:869c7f61-5724-4eab-8334-b3024b39d507" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "92562078-d574-4b9b-8a0f-59f8151ff08b" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14362,7 +5309,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:03 GMT" + "Wed, 13 Dec 2017 06:36:05 GMT" ], "Pragma": [ "no-cache" @@ -14371,20 +5318,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "92562078-d574-4b9b-8a0f-59f8151ff08b" + "172b35f9-ff71-4445-a208-8bbf149aed9d" ], "request-id": [ - "92562078-d574-4b9b-8a0f-59f8151ff08b" + "172b35f9-ff71-4445-a208-8bbf149aed9d" ], "elapsed-time": [ - "68" + "212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14393,35 +5340,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14914" ], "x-ms-correlation-request-id": [ - "e7520010-5554-407d-8271-6789c6cda6c6" + "c22077cf-53d9-4691-84d4-9dd6765f3694" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051803Z:e7520010-5554-407d-8271-6789c6cda6c6" + "CENTRALUS:20171213T063605Z:c22077cf-53d9-4691-84d4-9dd6765f3694" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "ca8a780c-fe40-4c6e-b736-acb7145e4b5c" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14433,7 +5374,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:13 GMT" + "Wed, 13 Dec 2017 06:36:36 GMT" ], "Pragma": [ "no-cache" @@ -14442,20 +5383,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ca8a780c-fe40-4c6e-b736-acb7145e4b5c" + "a95b3870-4efd-45ee-9c95-fd41948a37b8" ], "request-id": [ - "ca8a780c-fe40-4c6e-b736-acb7145e4b5c" + "a95b3870-4efd-45ee-9c95-fd41948a37b8" ], "elapsed-time": [ - "87" + "112" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14464,35 +5405,29 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14913" ], "x-ms-correlation-request-id": [ - "53785835-b2ff-4706-b426-cd12029835d7" + "6dcca668-e456-4d12-bec0-0a8707e7707a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051813Z:53785835-b2ff-4706-b426-cd12029835d7" + "CENTRALUS:20171213T063636Z:6dcca668-e456-4d12-bec0-0a8707e7707a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "233069eb-0672-4622-a7c8-632b5a552123" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023\",\"name\":\"azs-1023\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -14504,7 +5439,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:23 GMT" + "Wed, 13 Dec 2017 06:37:05 GMT" ], "Pragma": [ "no-cache" @@ -14513,20 +5448,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-05-09T05%3A10%3A34.7656729Z'\"" + "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "233069eb-0672-4622-a7c8-632b5a552123" + "c5f72a1c-5aca-4099-bd9e-969f755fe3d5" ], "request-id": [ - "233069eb-0672-4622-a7c8-632b5a552123" + "c5f72a1c-5aca-4099-bd9e-969f755fe3d5" ], "elapsed-time": [ - "85" + "113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14535,31 +5470,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14912" ], "x-ms-correlation-request-id": [ - "b339a8dd-32bf-4e59-bd41-1144b252247b" + "ce684b3e-afe2-424e-a3c7-b5dffa4b2ba9" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051824Z:b339a8dd-32bf-4e59-bd41-1144b252247b" + "CENTRALUS:20171213T063706Z:ce684b3e-afe2-424e-a3c7-b5dffa4b2ba9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3693/providers/Microsoft.Search/searchServices/azs-1023?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMDIzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "296c4c39-d507-45e5-b910-f8338ce027fb" + "0de50751-209b-4b9e-8c1c-d1a56fd1343f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -14575,19 +5510,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:27 GMT" + "Wed, 13 Dec 2017 06:37:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "296c4c39-d507-45e5-b910-f8338ce027fb" + "0de50751-209b-4b9e-8c1c-d1a56fd1343f" ], "request-id": [ - "296c4c39-d507-45e5-b910-f8338ce027fb" + "0de50751-209b-4b9e-8c1c-d1a56fd1343f" ], "elapsed-time": [ - "1564" + "2508" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14596,13 +5531,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1126" ], "x-ms-correlation-request-id": [ - "d0fc6075-6c9f-48a5-98be-69067fa17b6d" + "722f6af9-bbb2-4c49-aad7-8b5574ef7dcf" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T051827Z:d0fc6075-6c9f-48a5-98be-69067fa17b6d" + "CENTRALUS:20171213T063712Z:722f6af9-bbb2-4c49-aad7-8b5574ef7dcf" ] }, "StatusCode": 200 @@ -14610,10 +5545,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3693" + "azsmnet2306" ], "GenerateServiceName": [ - "azs-1023" + "azs-801" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json index 51ab960d15aff..eb9a1668147e7 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cbfd85e-fc01-4052-a10c-7eb5910aea17" + "38d224a1-ea22-4162-8b89-10ea7136f35c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:29 GMT" + "Wed, 13 Dec 2017 05:56:12 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1176" ], "x-ms-request-id": [ - "2a45a2b2-e057-4a7e-a887-9dab2504c308" + "594d54f3-7379-48c0-8997-ad5cf4e095d0" ], "x-ms-correlation-request-id": [ - "2a45a2b2-e057-4a7e-a887-9dab2504c308" + "594d54f3-7379-48c0-8997-ad5cf4e095d0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044129Z:2a45a2b2-e057-4a7e-a887-9dab2504c308" + "CENTRALUS:20171213T055613Z:594d54f3-7379-48c0-8997-ad5cf4e095d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3188?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMTg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8834?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODM0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "94d94692-13fc-42c9-89f2-05b7ce006786" + "5fb229ad-c682-4482-8c8c-6c848df501ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3188\",\r\n \"name\": \"azsmnet3188\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8834\",\r\n \"name\": \"azsmnet8834\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:30 GMT" + "Wed, 13 Dec 2017 05:56:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1175" ], "x-ms-request-id": [ - "fa027108-a0c8-4329-ba48-9bdfe0000ff8" + "04638c86-3470-448c-8109-497f14742ec6" ], "x-ms-correlation-request-id": [ - "fa027108-a0c8-4329-ba48-9bdfe0000ff8" + "04638c86-3470-448c-8109-497f14742ec6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044130Z:fa027108-a0c8-4329-ba48-9bdfe0000ff8" + "CENTRALUS:20171213T055613Z:04638c86-3470-448c-8109-497f14742ec6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,13 +132,13 @@ "58" ], "x-ms-client-request-id": [ - "2ebc5f3b-576e-4719-be36-b7d700218c7f" + "85a8bb6a-2c9c-450f-8136-4e64a3c91715" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:32 GMT" + "Wed, 13 Dec 2017 05:56:13 GMT" ], "Pragma": [ "no-cache" @@ -167,13 +167,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2ebc5f3b-576e-4719-be36-b7d700218c7f" + "85a8bb6a-2c9c-450f-8136-4e64a3c91715" ], "request-id": [ - "2ebc5f3b-576e-4719-be36-b7d700218c7f" + "85a8bb6a-2c9c-450f-8136-4e64a3c91715" ], "elapsed-time": [ - "0" + "21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,13 +182,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1174" ], "x-ms-correlation-request-id": [ - "a4f326ff-0c59-4752-ade0-b49def1d9633" + "e3f6f108-1310-4a32-b1a8-42edccce8a23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044132Z:a4f326ff-0c59-4752-ade0-b49def1d9633" + "CENTRALUS:20171213T055614Z:e3f6f108-1310-4a32-b1a8-42edccce8a23" ] }, "StatusCode": 200 @@ -196,7 +196,7 @@ ], "Names": { "GenerateName": [ - "azsmnet3188" + "azsmnet8834" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json index a295cf1cbcc8d..e8bc62925d589 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4317d47c-1100-40ab-aa7f-c342e6437bcd" + "d19de050-f7e0-4f17-8d61-5616e87e5f23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:00 GMT" + "Wed, 13 Dec 2017 06:37:13 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1124" ], "x-ms-request-id": [ - "1b7196a6-3cd4-442c-96c4-6d12e81fd35b" + "6c523817-5c76-4205-ab78-3655126fb1ed" ], "x-ms-correlation-request-id": [ - "1b7196a6-3cd4-442c-96c4-6d12e81fd35b" + "6c523817-5c76-4205-ab78-3655126fb1ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044101Z:1b7196a6-3cd4-442c-96c4-6d12e81fd35b" + "CENTRALUS:20171213T063713Z:6c523817-5c76-4205-ab78-3655126fb1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2227?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMjI3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1544?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "effc6c93-8f27-4fd0-8748-ca1c5c6981e7" + "aa25d844-c9df-4733-a83f-487917d2d8c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2227\",\r\n \"name\": \"azsmnet2227\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1544\",\r\n \"name\": \"azsmnet1544\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:02 GMT" + "Wed, 13 Dec 2017 06:37:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1123" ], "x-ms-request-id": [ - "1565a8f5-6069-4326-9672-8eeec94316a7" + "c66295ab-6710-4baa-b7b1-b2c24d9fd18f" ], "x-ms-correlation-request-id": [ - "1565a8f5-6069-4326-9672-8eeec94316a7" + "c66295ab-6710-4baa-b7b1-b2c24d9fd18f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044102Z:1565a8f5-6069-4326-9672-8eeec94316a7" + "CENTRALUS:20171213T063713Z:c66295ab-6710-4baa-b7b1-b2c24d9fd18f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2227/providers/Microsoft.Search/searchServices/azs-804?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMjI3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1544/providers/Microsoft.Search/searchServices/azs-125?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMjU/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "141" ], "x-ms-client-request-id": [ - "8e703817-5744-4e62-85a4-3cc81c0a9d73" + "dd061a52-00bc-4c6e-980d-03a992659e4a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2227/providers/Microsoft.Search/searchServices/azs-804\",\"name\":\"azs-804\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1544/providers/Microsoft.Search/searchServices/azs-125\",\"name\":\"azs-125\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "383" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:07 GMT" + "Wed, 13 Dec 2017 06:37:16 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A41%3A07.361332Z'\"" + "W/\"datetime'2017-12-13T06%3A37%3A15.9458967Z'\"" ], "x-ms-request-id": [ - "8e703817-5744-4e62-85a4-3cc81c0a9d73" + "dd061a52-00bc-4c6e-980d-03a992659e4a" ], "request-id": [ - "8e703817-5744-4e62-85a4-3cc81c0a9d73" + "dd061a52-00bc-4c6e-980d-03a992659e4a" ], "elapsed-time": [ - "885" + "1235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,13 +181,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1122" ], "x-ms-correlation-request-id": [ - "8986327e-044f-4710-ab72-f98516346364" + "69571150-83f0-45e9-a81e-db8552b42fb2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044107Z:8986327e-044f-4710-ab72-f98516346364" + "CENTRALUS:20171213T063716Z:69571150-83f0-45e9-a81e-db8552b42fb2" ] }, "StatusCode": 201 @@ -196,7 +196,7 @@ "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/checkNameAvailability?api-version=2015-08-19", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL2NoZWNrTmFtZUF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azs-804\",\r\n \"type\": \"searchServices\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azs-125\",\r\n \"type\": \"searchServices\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -205,13 +205,13 @@ "54" ], "x-ms-client-request-id": [ - "94bdced8-63e3-4974-b3e4-0cd442dd06e3" + "34bf62b5-d3db-4b25-bb4e-1a3ed6a5bbe3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:41:09 GMT" + "Wed, 13 Dec 2017 06:37:16 GMT" ], "Pragma": [ "no-cache" @@ -240,13 +240,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "94bdced8-63e3-4974-b3e4-0cd442dd06e3" + "34bf62b5-d3db-4b25-bb4e-1a3ed6a5bbe3" ], "request-id": [ - "94bdced8-63e3-4974-b3e4-0cd442dd06e3" + "34bf62b5-d3db-4b25-bb4e-1a3ed6a5bbe3" ], "elapsed-time": [ - "465" + "136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1121" ], "x-ms-correlation-request-id": [ - "c2674e6a-fbcb-425b-95c9-1d26cbd89932" + "038c8007-61ca-48c6-92cf-580443d0966f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T044109Z:c2674e6a-fbcb-425b-95c9-1d26cbd89932" + "CENTRALUS:20171213T063716Z:038c8007-61ca-48c6-92cf-580443d0966f" ] }, "StatusCode": 200 @@ -269,10 +269,10 @@ ], "Names": { "GenerateName": [ - "azsmnet2227" + "azsmnet1544" ], "GenerateServiceName": [ - "azs-804" + "azs-125" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json index c04a471563ac2..1773926c78094 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0a3a2d6-bdac-4d99-9456-04984154f7ae" + "2333b48b-aa04-42a4-b276-af5258d0f704" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:33 GMT" + "Wed, 13 Dec 2017 05:56:31 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1153" ], "x-ms-request-id": [ - "fd280c9c-c40d-4550-92f6-187f68ddb482" + "0663fa1d-fd08-4f1d-8e6f-342716cafdb9" ], "x-ms-correlation-request-id": [ - "fd280c9c-c40d-4550-92f6-187f68ddb482" + "0663fa1d-fd08-4f1d-8e6f-342716cafdb9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T051834Z:fd280c9c-c40d-4550-92f6-187f68ddb482" + "CENTRALUS:20171213T055632Z:0663fa1d-fd08-4f1d-8e6f-342716cafdb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9675?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5Njc1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7253?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MjUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "38ac33e0-d807-489a-9a3e-04ba951f3964" + "967c6d7c-2510-4317-937a-cb4169b7fef4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9675\",\r\n \"name\": \"azsmnet9675\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7253\",\r\n \"name\": \"azsmnet7253\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:34 GMT" + "Wed, 13 Dec 2017 05:56:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1152" ], "x-ms-request-id": [ - "2f51d7a5-e2f3-4a22-980a-22a8cfac884e" + "5cd34a44-9617-4ee8-a5a3-d7eb86130af9" ], "x-ms-correlation-request-id": [ - "2f51d7a5-e2f3-4a22-980a-22a8cfac884e" + "5cd34a44-9617-4ee8-a5a3-d7eb86130af9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T051835Z:2f51d7a5-e2f3-4a22-980a-22a8cfac884e" + "CENTRALUS:20171213T055632Z:5cd34a44-9617-4ee8-a5a3-d7eb86130af9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,13 +132,13 @@ "57" ], "x-ms-client-request-id": [ - "328f39a0-7ba4-4f18-afc1-b466bb0d3d5c" + "104bec4c-d581-4446-aa38-f19e5c4e1eda" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 05:18:42 GMT" + "Wed, 13 Dec 2017 05:56:33 GMT" ], "Pragma": [ "no-cache" @@ -167,13 +167,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "328f39a0-7ba4-4f18-afc1-b466bb0d3d5c" + "104bec4c-d581-4446-aa38-f19e5c4e1eda" ], "request-id": [ - "328f39a0-7ba4-4f18-afc1-b466bb0d3d5c" + "104bec4c-d581-4446-aa38-f19e5c4e1eda" ], "elapsed-time": [ - "4549" + "151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,13 +182,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1151" ], "x-ms-correlation-request-id": [ - "0810f985-fac0-4923-9048-2365c2999584" + "7319fb68-e29b-4357-9513-42428cb0f0e0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20170509T051842Z:0810f985-fac0-4923-9048-2365c2999584" + "CENTRALUS:20171213T055633Z:7319fb68-e29b-4357-9513-42428cb0f0e0" ] }, "StatusCode": 200 @@ -196,7 +196,7 @@ ], "Names": { "GenerateName": [ - "azsmnet9675" + "azsmnet7253" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json index f4363b0e5a41d..612a73cf08423 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9840558b-2667-4bf9-ba08-73bb58b9924d" + "4410f0fa-9fa7-40ef-8d87-dcd5fb930665" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:53 GMT" + "Wed, 13 Dec 2017 05:56:47 GMT" ], "Pragma": [ "no-cache" @@ -44,13 +44,13 @@ "1139" ], "x-ms-request-id": [ - "c6554a94-9634-433f-a0ae-9ecd25323e43" + "e16f5e49-58dc-4760-b2ce-6fcdee54bcb0" ], "x-ms-correlation-request-id": [ - "c6554a94-9634-433f-a0ae-9ecd25323e43" + "e16f5e49-58dc-4760-b2ce-6fcdee54bcb0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040453Z:c6554a94-9634-433f-a0ae-9ecd25323e43" + "CENTRALUS:20171213T055647Z:e16f5e49-58dc-4760-b2ce-6fcdee54bcb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7070?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MDcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9757?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,21 +71,18 @@ "29" ], "x-ms-client-request-id": [ - "c565fea0-81d4-4413-b005-47aecaece33a" + "86f7db85-2f8d-4997-8fc0-699999a89e13" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7070\",\r\n \"name\": \"azsmnet7070\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9757\",\r\n \"name\": \"azsmnet9757\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "175" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -96,32 +93,38 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:53 GMT" + "Wed, 13 Dec 2017 05:56:47 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ "1138" ], "x-ms-request-id": [ - "748912b5-37f6-4b4b-bfce-0f030639b61b" + "dba17bd3-3713-4986-bb38-1bd295ab49e3" ], "x-ms-correlation-request-id": [ - "748912b5-37f6-4b4b-bfce-0f030639b61b" + "dba17bd3-3713-4986-bb38-1bd295ab49e3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040454Z:748912b5-37f6-4b4b-bfce-0f030639b61b" + "CENTRALUS:20171213T055647Z:dba17bd3-3713-4986-bb38-1bd295ab49e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7070/providers/Microsoft.Search/searchServices/----badname?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzLy0tLS1iYWRuYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9757/providers/Microsoft.Search/searchServices/----badname?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzLy0tLS1iYWRuYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,13 +135,13 @@ "141" ], "x-ms-client-request-id": [ - "bf31fb2a-472c-4136-9eaf-15a36a6615b0" + "6bd0a50a-eeda-42a4-bd59-32aef20550cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -160,19 +163,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:56 GMT" + "Wed, 13 Dec 2017 05:56:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "bf31fb2a-472c-4136-9eaf-15a36a6615b0" + "6bd0a50a-eeda-42a4-bd59-32aef20550cc" ], "request-id": [ - "bf31fb2a-472c-4136-9eaf-15a36a6615b0" + "6bd0a50a-eeda-42a4-bd59-32aef20550cc" ], "elapsed-time": [ - "7" + "28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,13 +184,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1137" ], "x-ms-correlation-request-id": [ - "2157832d-3284-4d36-8feb-213c55ad4186" + "19a05a49-1875-4575-8187-712c8206e411" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040457Z:2157832d-3284-4d36-8feb-213c55ad4186" + "CENTRALUS:20171213T055648Z:19a05a49-1875-4575-8187-712c8206e411" ] }, "StatusCode": 400 @@ -195,7 +198,7 @@ ], "Names": { "GenerateName": [ - "azsmnet7070" + "azsmnet9757" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json index 75090dad88009..703cdce1f5c29 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc4bc929-4e97-408b-a740-63a6095dfe5d" + "4afa4fb2-d64c-483f-a9d6-6eaaf6bd5ad5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:40 GMT" + "Wed, 13 Dec 2017 05:56:18 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1168" ], "x-ms-request-id": [ - "d1a84c2c-5ffe-4d7d-9002-9c68acb7ec7c" + "1ed78286-ba9c-4f13-b46d-668a271c1019" ], "x-ms-correlation-request-id": [ - "d1a84c2c-5ffe-4d7d-9002-9c68acb7ec7c" + "1ed78286-ba9c-4f13-b46d-668a271c1019" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040441Z:d1a84c2c-5ffe-4d7d-9002-9c68acb7ec7c" + "CENTRALUS:20171213T055619Z:1ed78286-ba9c-4f13-b46d-668a271c1019" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7506?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NTA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6582?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NTgyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "c3ad77ad-3397-452b-966d-2fa1c70c231e" + "05bba5a0-c248-4069-80dc-bcb547ac211b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7506\",\r\n \"name\": \"azsmnet7506\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582\",\r\n \"name\": \"azsmnet6582\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:40 GMT" + "Wed, 13 Dec 2017 05:56:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1167" ], "x-ms-request-id": [ - "9cf30457-50ea-400b-8410-bbbc4863a333" + "ceac39df-b683-4646-ab57-41273acf12db" ], "x-ms-correlation-request-id": [ - "9cf30457-50ea-400b-8410-bbbc4863a333" + "ceac39df-b683-4646-ab57-41273acf12db" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040441Z:9cf30457-50ea-400b-8410-bbbc4863a333" + "CENTRALUS:20171213T055619Z:ceac39df-b683-4646-ab57-41273acf12db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7506/providers/Microsoft.Search/searchServices/azs-7586?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,17 +132,17 @@ "141" ], "x-ms-client-request-id": [ - "e757f87b-2349-4988-9a5a-cfd092cb21fc" + "3b29caaf-07db-4905-ab8e-3604695a96ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7506/providers/Microsoft.Search/searchServices/azs-7586\",\"name\":\"azs-7586\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438\",\"name\":\"azs-7438\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:45 GMT" + "Wed, 13 Dec 2017 05:56:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-05-09T04%3A04%3A46.0955358Z'\"" + "W/\"datetime'2017-12-13T05%3A56%3A21.301558Z'\"" ], "x-ms-request-id": [ - "e757f87b-2349-4988-9a5a-cfd092cb21fc" + "3b29caaf-07db-4905-ab8e-3604695a96ee" ], "request-id": [ - "e757f87b-2349-4988-9a5a-cfd092cb21fc" + "3b29caaf-07db-4905-ab8e-3604695a96ee" ], "elapsed-time": [ - "1207" + "1006" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,31 +181,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1166" ], "x-ms-correlation-request-id": [ - "9bd366cb-6dc0-4f9a-bd8e-8d82afbb2682" + "25bfe945-daed-4332-b11b-d8501eae3382" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040446Z:9bd366cb-6dc0-4f9a-bd8e-8d82afbb2682" + "CENTRALUS:20171213T055621Z:25bfe945-daed-4332-b11b-d8501eae3382" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7506/providers/Microsoft.Search/searchServices/azs-7586?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4677666-6d54-4cab-b816-39ec5f5c42ca" + "23078fa4-5712-4400-a278-1994564e95cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:48 GMT" + "Wed, 13 Dec 2017 05:56:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d4677666-6d54-4cab-b816-39ec5f5c42ca" + "23078fa4-5712-4400-a278-1994564e95cb" ], "request-id": [ - "d4677666-6d54-4cab-b816-39ec5f5c42ca" + "23078fa4-5712-4400-a278-1994564e95cb" ], "elapsed-time": [ - "1138" + "823" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,31 +242,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1165" ], "x-ms-correlation-request-id": [ - "57a0e09b-6fbc-4df9-a51c-547d09b3e201" + "e7768fa3-ecdb-4e3d-8620-05109011cd35" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040448Z:57a0e09b-6fbc-4df9-a51c-547d09b3e201" + "CENTRALUS:20171213T055622Z:e7768fa3-ecdb-4e3d-8620-05109011cd35" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7506/providers/Microsoft.Search/searchServices/azs-7586?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NTg2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52f425dd-0d82-4a1d-b1ba-71f89510fe5f" + "785383d5-ef47-44c7-91ea-180ca2782941" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -279,22 +279,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:04:48 GMT" + "Wed, 13 Dec 2017 05:56:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1164" ], "x-ms-request-id": [ - "ab8fcc8a-7b9e-4c92-9da5-1e744ff82c80" + "fdc33e47-8a61-48b3-83ac-de43d2f71523" ], "x-ms-correlation-request-id": [ - "ab8fcc8a-7b9e-4c92-9da5-1e744ff82c80" + "fdc33e47-8a61-48b3-83ac-de43d2f71523" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040449Z:ab8fcc8a-7b9e-4c92-9da5-1e744ff82c80" + "CENTRALUS:20171213T055622Z:fdc33e47-8a61-48b3-83ac-de43d2f71523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,10 +305,10 @@ ], "Names": { "GenerateName": [ - "azsmnet7506" + "azsmnet6582" ], "GenerateServiceName": [ - "azs-7586" + "azs-7438" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json index 06cd1b8ca9050..731385859919f 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json @@ -7,13 +7,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12a82934-5a99-470d-8314-4d535d6cfa8b" + "5e017868-140a-4e0b-95ae-64e51a1afdf0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:02:50 GMT" + "Wed, 13 Dec 2017 06:37:30 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1110" ], "x-ms-request-id": [ - "ff928033-9206-4ddd-b837-2b6405b56f87" + "6bd26b2e-b488-4bbb-9bde-e7b67129f71c" ], "x-ms-correlation-request-id": [ - "ff928033-9206-4ddd-b837-2b6405b56f87" + "6bd26b2e-b488-4bbb-9bde-e7b67129f71c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040250Z:ff928033-9206-4ddd-b837-2b6405b56f87" + "CENTRALUS:20171213T063730Z:6bd26b2e-b488-4bbb-9bde-e7b67129f71c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3074?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMDc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8614?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NjE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "f1a0b24d-e2ba-45ea-a799-e6c5388e175f" + "c7514bd6-3ec3-4f2c-8f90-964c64602eda" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3074\",\r\n \"name\": \"azsmnet3074\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8614\",\r\n \"name\": \"azsmnet8614\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:02:51 GMT" + "Wed, 13 Dec 2017 06:37:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1145" + "1109" ], "x-ms-request-id": [ - "b1fa404f-293a-4266-a7fe-8695481374e3" + "b0cfbec0-e2ca-45f1-9004-128d60c30b08" ], "x-ms-correlation-request-id": [ - "b1fa404f-293a-4266-a7fe-8695481374e3" + "b0cfbec0-e2ca-45f1-9004-128d60c30b08" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040251Z:b1fa404f-293a-4266-a7fe-8695481374e3" + "CENTRALUS:20171213T063730Z:b0cfbec0-e2ca-45f1-9004-128d60c30b08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3074/providers/Microsoft.Search/searchServices?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8614/providers/Microsoft.Search/searchServices?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -132,7 +132,7 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25009.03", + "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Tue, 09 May 2017 04:02:54 GMT" + "Wed, 13 Dec 2017 06:37:30 GMT" ], "Pragma": [ "no-cache" @@ -167,7 +167,7 @@ "c4cfce79-eb42-4e61-9909-84510c04706f" ], "elapsed-time": [ - "106" + "39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -176,13 +176,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14910" ], "x-ms-correlation-request-id": [ - "cc88b4cc-754e-4aee-8262-8baf28f5e726" + "d5addd8a-15d0-4d74-8a03-edcf7179e7e1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20170509T040254Z:cc88b4cc-754e-4aee-8262-8baf28f5e726" + "CENTRALUS:20171213T063731Z:d5addd8a-15d0-4d74-8a03-edcf7179e7e1" ] }, "StatusCode": 200 @@ -190,7 +190,7 @@ ], "Names": { "GenerateName": [ - "azsmnet3074" + "azsmnet8614" ] }, "Variables": { From fb04f070eacf307b7cd6004e4fc17c05855f40d9 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Wed, 13 Dec 2017 22:18:18 -0800 Subject: [PATCH 04/10] [Azure Search] Adding the management SDK to the list of support Nuget packages --- Documentation/sdk-for-net-packages.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/sdk-for-net-packages.md b/Documentation/sdk-for-net-packages.md index f79bcab8c484f..b6c395b6a50f7 100644 --- a/Documentation/sdk-for-net-packages.md +++ b/Documentation/sdk-for-net-packages.md @@ -43,6 +43,7 @@ Below are the packages maintained in this repository. | Relay | `Microsoft.Azure.Management.Relay` | [![Relay](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.Relay.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.Relay) | | Resources | `Microsoft.Azure.Management.ResourceManager` | [![Resources](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.ResourceManager.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.ResourceManager) | | Scheduler | `Microsoft.Azure.Management.Scheduler` | [![Scheduler](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.Scheduler.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.Scheduler) | +| Search | `Microsoft.Azure.Management.Search` | [![Search](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.Search.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.Search) | | Server Management | `Microsoft.Azure.Management.ServerManagement` | [![Server Management](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.ServerManagement.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.ServerManagement) | | Service Bus | `Microsoft.Azure.Management.ServiceBus` | [![Service Bus](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.ServiceBus.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.ServiceBus) | | Service Fabric | `Microsoft.Azure.Management.ServiceFabric` | [![Service Fabric](https://img.shields.io/nuget/vpre/Microsoft.Azure.Management.ServiceFabric.svg)](https://www.nuget.org/packages/Microsoft.Azure.Management.ServiceFabric) | From a6a846aacee4ff85dbdd8e475f55f7dc2da6fb0f Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Thu, 14 Dec 2017 00:01:39 -0800 Subject: [PATCH 05/10] [Azure Search] Adding useful script for regenerating management SDK The stock generate.cmd script takes way too many parameters to be useful when iterating on a private Swagger spec. --- .../generate-from-private-spec.cmd | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/SDKs/Search/Management/Management.Search/generate-from-private-spec.cmd diff --git a/src/SDKs/Search/Management/Management.Search/generate-from-private-spec.cmd b/src/SDKs/Search/Management/Management.Search/generate-from-private-spec.cmd new file mode 100644 index 0000000000000..4603db346e119 --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/generate-from-private-spec.cmd @@ -0,0 +1,13 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: +:: This generates the SDK code from a private Swagger spec +:: hosted in your private fork of Azure/azure-rest-api-specs +:: +:: Paramters: +:: 1. Your GitHub user name +:: 2. Your remote branch name + +@echo off +call .\generate.cmd latest %1 %2 From 4901c4c4c800bc8c63d9a27ee8bde1528ed12167 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Wed, 13 Dec 2017 23:31:30 -0800 Subject: [PATCH 06/10] [Azure Search] Generating new code for PATCH services and adding tests Also re-recording all session records. --- .../Generated/IServicesOperations.cs | 34 + .../Generated/Models/Resource.cs | 23 +- .../Generated/Models/SearchService.cs | 23 +- .../Generated/ServicesOperations.cs | 229 + .../Generated/ServicesOperationsExtensions.cs | 56 + .../CanGetAdminKeys.json | 146 +- .../CanRegenerateAdminKeys.json | 188 +- .../CanCreateAndDeleteQueryKeys.json | 230 +- .../CanListQueryKeys.json | 144 +- .../DeleteQueryKeyIsIdempotent.json | 190 +- .../CanCreateAndDeleteService.json | 98 +- .../CanCreateAndGetService.json | 82 +- .../CanCreateBasicService.json | 78 +- .../CanCreateStandard2Service.json | 5591 +++++++- .../CanCreateStandard3HighDensityService.json | 5233 +++++++- .../CanCreateStandard3Service.json | 4810 ++++++- .../CanCreateStandardService.json | 78 +- .../CanListServices.json | 108 +- .../CanScaleServiceUpAndDown.json | 11160 ++++++++++++++-- .../CanUpdateTags.json | 438 + ...eckNameAvailabilityFailsOnInvalidName.json | 50 +- .../CheckNameAvailabilityFailsOnUsedName.json | 80 +- ...heckNameAvailabilitySucceedsOnNewName.json | 48 +- ...viceWithInvalidNameGivesUsefulMessage.json | 63 +- ...eateStandardServicePollsAutomatically.json | 2803 ++++ .../DeleteServiceIsIdempotent.json | 98 +- ...teServiceWithInvalidNameGivesNotFound.json | 192 + ...mutablePropertiesThrowsCloudException.json | 430 + .../RequestIdIsReturnedInResponse.json | 46 +- .../Tests/SearchServiceTests.cs | 186 +- .../_metadata/search_resource-manager.txt | 8 +- 31 files changed, 30048 insertions(+), 2895 deletions(-) create mode 100644 src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json create mode 100644 src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json create mode 100644 src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json create mode 100644 src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json diff --git a/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs index 160fe03a4c2d5..6bac3629beb54 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/IServicesOperations.cs @@ -67,6 +67,40 @@ public partial interface IServicesOperations /// Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Updates an existing Search service in the given resource group. + /// + /// + /// + /// The name of the resource group within the current subscription. You + /// can obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the Azure Search service to update. + /// + /// + /// The definition of the Search service to update. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets the Search service with the given name in the given resource /// group. /// diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs index eb792261e2b47..f3795db6f79f6 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs @@ -33,17 +33,17 @@ public Resource() /// /// Initializes a new instance of the Resource class. /// - /// The geographic location of the resource. - /// This must be one of the supported and registered Azure Geo Regions - /// (for example, West US, East US, Southeast Asia, and so - /// forth). /// The ID of the resource. This can be used with the /// Azure Resource Manager to link resources together. /// The name of the resource. /// The resource type. + /// The geographic location of the resource. + /// This must be one of the supported and registered Azure Geo Regions + /// (for example, West US, East US, Southeast Asia, and so + /// forth). /// Tags to help categorize the resource in the /// Azure portal. - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; @@ -92,18 +92,5 @@ public Resource() [JsonProperty(PropertyName = "tags")] public IDictionary Tags { 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/Search/Management/Management.Search/Generated/Models/SearchService.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs index 46b6419d19cb6..039364d89acf3 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs @@ -34,16 +34,14 @@ public SearchService() /// /// Initializes a new instance of the SearchService class. /// - /// The geographic location of the resource. - /// This must be one of the supported and registered Azure Geo Regions - /// (for example, West US, East US, Southeast Asia, and so - /// forth). - /// The SKU of the Search Service, which determines - /// price tier and capacity limits. /// The ID of the resource. This can be used with the /// Azure Resource Manager to link resources together. /// The name of the resource. /// The resource type. + /// The geographic location of the resource. + /// This must be one of the supported and registered Azure Geo Regions + /// (for example, West US, East US, Southeast Asia, and so + /// forth). /// Tags to help categorize the resource in the /// Azure portal. /// The number of replicas in the Search @@ -92,8 +90,10 @@ public SearchService() /// the call to Create Search service. This is because the free service /// uses capacity that is already set up. Possible values include: /// 'succeeded', 'provisioning', 'failed' - public SearchService(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), int? replicaCount = default(int?), int? partitionCount = default(int?), HostingMode? hostingMode = default(HostingMode?), SearchServiceStatus? status = default(SearchServiceStatus?), string statusDetails = default(string), ProvisioningState? provisioningState = default(ProvisioningState?)) - : base(location, id, name, type, tags) + /// The SKU of the Search Service, which determines + /// price tier and capacity limits. + public SearchService(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), int? replicaCount = default(int?), int? partitionCount = default(int?), HostingMode? hostingMode = default(HostingMode?), SearchServiceStatus? status = default(SearchServiceStatus?), string statusDetails = default(string), ProvisioningState? provisioningState = default(ProvisioningState?), Sku sku = default(Sku)) + : base(id, name, type, location, tags) { ReplicaCount = replicaCount; PartitionCount = partitionCount; @@ -196,13 +196,8 @@ public SearchService() /// /// Thrown if validation fails /// - public override void Validate() + public virtual void Validate() { - base.Validate(); - if (Sku == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); - } if (ReplicaCount > 12) { throw new ValidationException(ValidationRules.InclusiveMaximum, "ReplicaCount", 12); diff --git a/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs index 8c25a391aab0a..5f6a0ed31e57f 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperations.cs @@ -88,6 +88,235 @@ internal ServicesOperations(SearchManagementClient client) return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Updates an existing Search service in the given resource group. + /// + /// + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service to update. + /// + /// + /// The definition of the Search service to update. + /// + /// + /// Additional parameters for the 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (searchServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "searchServiceName"); + } + if (service == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "service"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + System.Guid? clientRequestId = default(System.Guid?); + if (searchManagementRequestOptions != null) + { + clientRequestId = searchManagementRequestOptions.ClientRequestId; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("searchServiceName", searchServiceName); + tracingParameters.Add("service", service); + tracingParameters.Add("clientRequestId", clientRequestId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", 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.Search/searchServices/{searchServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{searchServiceName}", System.Uri.EscapeDataString(searchServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + if (clientRequestId != null) + { + if (_httpRequest.Headers.Contains("x-ms-client-request-id")) + { + _httpRequest.Headers.Remove("x-ms-client-request-id"); + } + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Rest.Serialization.SafeJsonConvert.SerializeObject(clientRequestId, Client.SerializationSettings).Trim('"')); + } + + + 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(service != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(service, 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) + { + 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 Search service with the given name in the given resource group. /// diff --git a/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs index baee9f2ce351c..073a0acc4bc46 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/ServicesOperationsExtensions.cs @@ -95,6 +95,62 @@ public static partial class ServicesOperationsExtensions } } + /// + /// Updates an existing Search service in the given resource group. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service to update. + /// + /// + /// The definition of the Search service to update. + /// + /// + /// Additional parameters for the operation + /// + public static SearchService Update(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions)) + { + return operations.UpdateAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions).GetAwaiter().GetResult(); + } + + /// + /// Updates an existing Search service in the given resource group. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the current subscription. You can + /// obtain this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the Azure Search service to update. + /// + /// + /// The definition of the Search service to update. + /// + /// + /// Additional parameters for the operation + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IServicesOperations operations, string resourceGroupName, string searchServiceName, SearchService service, SearchManagementRequestOptions searchManagementRequestOptions = default(SearchManagementRequestOptions), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, searchServiceName, service, searchManagementRequestOptions, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets the Search service with the given name in the given resource group. /// diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json index dae7b3e60a69e..1c37372f92884 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanGetAdminKeys.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d53a07c-67a9-4303-9bde-40460b85e7cb" + "47216a2e-4c29-4d14-adbb-dd8eea9bdcc1" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:49 GMT" + "Thu, 14 Dec 2017 09:51:31 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1098" + "1190" ], "x-ms-request-id": [ - "e53ed8f0-b053-4cba-a852-c843d26958be" + "1f926cda-ed09-4487-94e5-242a53fc132c" ], "x-ms-correlation-request-id": [ - "e53ed8f0-b053-4cba-a852-c843d26958be" + "1f926cda-ed09-4487-94e5-242a53fc132c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063749Z:e53ed8f0-b053-4cba-a852-c843d26958be" + "CENTRALUS:20171214T095132Z:1f926cda-ed09-4487-94e5-242a53fc132c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2659?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNjU5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8344?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MzQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "f80d20a9-5c56-4ca4-876c-6d5f8ee20864" + "4d38ab19-cf67-4d50-a088-bb4e51ca6b41" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659\",\r\n \"name\": \"azsmnet2659\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344\",\r\n \"name\": \"azsmnet8344\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:49 GMT" + "Thu, 14 Dec 2017 09:51:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1097" + "1189" ], "x-ms-request-id": [ - "dc42170b-61dd-49a1-85f0-ec527abd4359" + "e8149c33-fcab-45e8-8e5e-26a0c62fef72" ], "x-ms-correlation-request-id": [ - "dc42170b-61dd-49a1-85f0-ec527abd4359" + "e8149c33-fcab-45e8-8e5e-26a0c62fef72" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063749Z:dc42170b-61dd-49a1-85f0-ec527abd4359" + "CENTRALUS:20171214T095132Z:e8149c33-fcab-45e8-8e5e-26a0c62fef72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344/providers/Microsoft.Search/searchServices/azs-6069?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDY5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "67" ], "x-ms-client-request-id": [ - "b37a63a9-ecf4-4236-bec1-89ca9fe460b2" + "7165cd02-4386-4592-a976-3f7c26a12db3" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659\",\r\n \"name\": \"azs-659\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344/providers/Microsoft.Search/searchServices/azs-6069\",\r\n \"name\": \"azs-6069\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:53 GMT" + "Thu, 14 Dec 2017 09:51:37 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A37%3A53.8993439Z'\"" + "W/\"datetime'2017-12-14T09%3A51%3A33.9564316Z'\"" ], "x-ms-request-id": [ - "b37a63a9-ecf4-4236-bec1-89ca9fe460b2" + "7165cd02-4386-4592-a976-3f7c26a12db3" ], "request-id": [ - "b37a63a9-ecf4-4236-bec1-89ca9fe460b2" + "7165cd02-4386-4592-a976-3f7c26a12db3" ], "elapsed-time": [ - "3657" + "768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1096" + "1188" ], "x-ms-correlation-request-id": [ - "5158cf3f-008e-43fb-8fba-f9709279024d" + "5af88ca0-ad5e-4b32-86ea-44539fa09c79" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063754Z:5158cf3f-008e-43fb-8fba-f9709279024d" + "CENTRALUS:20171214T095137Z:5af88ca0-ad5e-4b32-86ea-44539fa09c79" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344/providers/Microsoft.Search/searchServices/azs-6069/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDY5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fb3874c-57e1-4391-a986-f455d03a8bdc" + "2e659e9d-b261-42c0-b0d1-f863f214eac5" ], "accept-language": [ "en-US" @@ -209,7 +209,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"02FB44602C1661B1F590C41FEB390D8D\",\r\n \"secondaryKey\": \"C633D19AD767FB4B872A16F5E50B7A5C\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"F5895206E97C117D229E5EC7E3522DE1\",\r\n \"secondaryKey\": \"F780FCEB3E8156F91214D9136C899999\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:55 GMT" + "Thu, 14 Dec 2017 09:51:37 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8fb3874c-57e1-4391-a986-f455d03a8bdc" + "2e659e9d-b261-42c0-b0d1-f863f214eac5" ], "request-id": [ - "8fb3874c-57e1-4391-a986-f455d03a8bdc" + "2e659e9d-b261-42c0-b0d1-f863f214eac5" ], "elapsed-time": [ - "402" + "164" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,25 +249,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1095" + "1187" ], "x-ms-correlation-request-id": [ - "30dd63f0-f035-4606-9911-c2574862a755" + "465f7885-e00d-416b-8982-d37b0d5631b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063755Z:30dd63f0-f035-4606-9911-c2574862a755" + "CENTRALUS:20171214T095138Z:465f7885-e00d-416b-8982-d37b0d5631b1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTkvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344/providers/Microsoft.Search/searchServices/azs-6069/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDY5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fea9c1d-2041-4acd-9c95-140390ff4ba1" + "b5ce5d5d-bfe1-4207-9ef2-07a9564f9bf2" ], "accept-language": [ "en-US" @@ -277,7 +277,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"02FB44602C1661B1F590C41FEB390D8D\",\"secondaryKey\":\"C633D19AD767FB4B872A16F5E50B7A5C\"}", + "ResponseBody": "{\"primaryKey\":\"F5895206E97C117D229E5EC7E3522DE1\",\"secondaryKey\":\"F780FCEB3E8156F91214D9136C899999\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:56 GMT" + "Thu, 14 Dec 2017 09:51:38 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8fea9c1d-2041-4acd-9c95-140390ff4ba1" + "b5ce5d5d-bfe1-4207-9ef2-07a9564f9bf2" ], "request-id": [ - "8fea9c1d-2041-4acd-9c95-140390ff4ba1" + "b5ce5d5d-bfe1-4207-9ef2-07a9564f9bf2" ], "elapsed-time": [ - "176" + "132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,25 +317,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1094" + "1186" ], "x-ms-correlation-request-id": [ - "7f1ab57f-23f4-437d-8eff-9943d5d83d1f" + "645f2650-d089-4947-975e-37f86c6545e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063756Z:7f1ab57f-23f4-437d-8eff-9943d5d83d1f" + "CENTRALUS:20171214T095139Z:645f2650-d089-4947-975e-37f86c6545e3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTkvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344/providers/Microsoft.Search/searchServices/azs-6069/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDY5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc014bd4-d5f6-43c8-bcb4-8173b76409b7" + "1cce46d9-4ce4-4865-9cc6-46705edb783f" ], "accept-language": [ "en-US" @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"40C86099A1221BCDCD36EC245034B4E0\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"5A3131476D6A9D552344C17F59EB4055\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:55 GMT" + "Thu, 14 Dec 2017 09:51:38 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fc014bd4-d5f6-43c8-bcb4-8173b76409b7" + "1cce46d9-4ce4-4865-9cc6-46705edb783f" ], "request-id": [ - "fc014bd4-d5f6-43c8-bcb4-8173b76409b7" + "1cce46d9-4ce4-4865-9cc6-46705edb783f" ], "elapsed-time": [ - "505" + "132" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,25 +385,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14998" ], "x-ms-correlation-request-id": [ - "ab6b2e3c-7fef-46a6-9ee7-b44a7a2bb827" + "437c3975-eed4-4121-9415-1c3ae73891f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063755Z:ab6b2e3c-7fef-46a6-9ee7-b44a7a2bb827" + "CENTRALUS:20171214T095138Z:437c3975-eed4-4121-9415-1c3ae73891f1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2659/providers/Microsoft.Search/searchServices/azs-659?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNjU5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02NTk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8344/providers/Microsoft.Search/searchServices/azs-6069?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MzQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDY5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a19f494b-df56-424d-87bd-b684a01820bc" + "20a69583-529b-4c8c-95f1-e073568f4823" ], "accept-language": [ "en-US" @@ -425,19 +425,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:38:01 GMT" + "Thu, 14 Dec 2017 09:51:40 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a19f494b-df56-424d-87bd-b684a01820bc" + "20a69583-529b-4c8c-95f1-e073568f4823" ], "request-id": [ - "a19f494b-df56-424d-87bd-b684a01820bc" + "20a69583-529b-4c8c-95f1-e073568f4823" ], "elapsed-time": [ - "731" + "697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,13 +446,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1093" + "1185" ], "x-ms-correlation-request-id": [ - "45f85fb9-f7d8-469f-9ef3-baf4393d1f44" + "e791d004-9f52-4788-902f-cefd52c4a863" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063801Z:45f85fb9-f7d8-469f-9ef3-baf4393d1f44" + "CENTRALUS:20171214T095140Z:e791d004-9f52-4788-902f-cefd52c4a863" ] }, "StatusCode": 200 @@ -460,10 +460,10 @@ ], "Names": { "GenerateName": [ - "azsmnet2659" + "azsmnet8344" ], "GenerateServiceName": [ - "azs-659" + "azs-6069" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json index 24d2c54f994b4..032954c64e05a 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.AdminKeyTests/CanRegenerateAdminKeys.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6784cbaa-b7f6-4477-96db-4ab914f4fc55" + "d6009fdc-0162-482e-bf93-2aa87ebf7011" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:31 GMT" + "Thu, 14 Dec 2017 09:51:17 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1199" ], "x-ms-request-id": [ - "d9c07e16-8253-475e-aaec-f503f5eb8d9f" + "ef120c56-d6e6-4111-8262-8613b6505198" ], "x-ms-correlation-request-id": [ - "d9c07e16-8253-475e-aaec-f503f5eb8d9f" + "ef120c56-d6e6-4111-8262-8613b6505198" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063732Z:d9c07e16-8253-475e-aaec-f503f5eb8d9f" + "CENTRALUS:20171214T095117Z:ef120c56-d6e6-4111-8262-8613b6505198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4465?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NDY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4702?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NzAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "e2808529-b383-40f2-9f56-351d8dd2ec69" + "531d843f-3a87-403c-a921-60da395460a0" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465\",\r\n \"name\": \"azsmnet4465\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702\",\r\n \"name\": \"azsmnet4702\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:31 GMT" + "Thu, 14 Dec 2017 09:51:20 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1106" + "1198" ], "x-ms-request-id": [ - "732ce023-ca0d-4fc8-b028-29ec96103089" + "fcc15bf3-1837-4e27-9c1d-841c52abbe41" ], "x-ms-correlation-request-id": [ - "732ce023-ca0d-4fc8-b028-29ec96103089" + "fcc15bf3-1837-4e27-9c1d-841c52abbe41" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063732Z:732ce023-ca0d-4fc8-b028-29ec96103089" + "CENTRALUS:20171214T095120Z:fcc15bf3-1837-4e27-9c1d-841c52abbe41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "67" ], "x-ms-client-request-id": [ - "e55dfcc3-eeff-4837-82b9-ee0bd7a1f4d2" + "d57a1c4c-7450-4d1d-9a50-2a69ec4ff2b8" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772\",\r\n \"name\": \"azs-1772\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657\",\r\n \"name\": \"azs-8657\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:34 GMT" + "Thu, 14 Dec 2017 09:51:25 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A37%3A34.440657Z'\"" + "W/\"datetime'2017-12-14T09%3A51%3A26.0688571Z'\"" ], "x-ms-request-id": [ - "e55dfcc3-eeff-4837-82b9-ee0bd7a1f4d2" + "d57a1c4c-7450-4d1d-9a50-2a69ec4ff2b8" ], "request-id": [ - "e55dfcc3-eeff-4837-82b9-ee0bd7a1f4d2" + "d57a1c4c-7450-4d1d-9a50-2a69ec4ff2b8" ], "elapsed-time": [ - "1031" + "4045" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1105" + "1197" ], "x-ms-correlation-request-id": [ - "ca9d77f0-b685-4f3f-9918-a8075f6fdff5" + "10471087-e601-449b-a962-913016dba62b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063734Z:ca9d77f0-b685-4f3f-9918-a8075f6fdff5" + "CENTRALUS:20171214T095126Z:10471087-e601-449b-a962-913016dba62b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5387ea8-2592-4101-bb69-4213dd212168" + "bcb504f0-073f-4a83-8f59-fd449a0a284a" ], "accept-language": [ "en-US" @@ -209,7 +209,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"DA2EBFDCD33A77F56E172772E6D627FE\",\r\n \"secondaryKey\": \"89C4D7B29492BB54A3B6626BA9F25372\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"29F9D3263B8563EC44D07F03C98A0E67\",\r\n \"secondaryKey\": \"390593E758D5938FF0AADC8E9FFD529F\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:35 GMT" + "Thu, 14 Dec 2017 09:51:26 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a5387ea8-2592-4101-bb69-4213dd212168" + "bcb504f0-073f-4a83-8f59-fd449a0a284a" ], "request-id": [ - "a5387ea8-2592-4101-bb69-4213dd212168" + "bcb504f0-073f-4a83-8f59-fd449a0a284a" ], "elapsed-time": [ - "521" + "155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,25 +249,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1104" + "1196" ], "x-ms-correlation-request-id": [ - "f6f9943e-5b1d-4df0-8139-22dfb861da35" + "a614c388-7d4d-4cac-9f0b-f6613d981ed6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063735Z:f6f9943e-5b1d-4df0-8139-22dfb861da35" + "CENTRALUS:20171214T095127Z:a614c388-7d4d-4cac-9f0b-f6613d981ed6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a74ec07-e06d-49e9-b3c4-bf7834338468" + "1b82d1b0-a919-4f10-876e-f48261b592b9" ], "accept-language": [ "en-US" @@ -277,7 +277,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"DA2EBFDCD33A77F56E172772E6D627FE\",\"secondaryKey\":\"89C4D7B29492BB54A3B6626BA9F25372\"}", + "ResponseBody": "{\"primaryKey\":\"29F9D3263B8563EC44D07F03C98A0E67\",\"secondaryKey\":\"390593E758D5938FF0AADC8E9FFD529F\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:39 GMT" + "Thu, 14 Dec 2017 09:51:27 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7a74ec07-e06d-49e9-b3c4-bf7834338468" + "1b82d1b0-a919-4f10-876e-f48261b592b9" ], "request-id": [ - "7a74ec07-e06d-49e9-b3c4-bf7834338468" + "1b82d1b0-a919-4f10-876e-f48261b592b9" ], "elapsed-time": [ - "1253" + "131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,25 +317,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1103" + "1195" ], "x-ms-correlation-request-id": [ - "ea3b1f47-f3df-43bf-9aa8-95b06af0b16b" + "6fc710b8-25c4-4a48-b57b-6bb8c1e30a44" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063740Z:ea3b1f47-f3df-43bf-9aa8-95b06af0b16b" + "CENTRALUS:20171214T095128Z:6fc710b8-25c4-4a48-b57b-6bb8c1e30a44" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c749011-cbaa-4a0f-aa21-f951b503aa95" + "3af56b9e-901a-41dd-bf18-9d2f4880828e" ], "accept-language": [ "en-US" @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"77BF4F2D1DC40458973622D121E963AA\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"79EF9A152FE074732F24E939205F640D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:38 GMT" + "Thu, 14 Dec 2017 09:51:27 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c749011-cbaa-4a0f-aa21-f951b503aa95" + "3af56b9e-901a-41dd-bf18-9d2f4880828e" ], "request-id": [ - "9c749011-cbaa-4a0f-aa21-f951b503aa95" + "3af56b9e-901a-41dd-bf18-9d2f4880828e" ], "elapsed-time": [ - "2287" + "134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,25 +385,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14999" ], "x-ms-correlation-request-id": [ - "6ec9fa12-5bed-4346-918b-c1e4b8890f48" + "c9abeeae-d8dd-4bb1-8002-942c0c223337" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063738Z:6ec9fa12-5bed-4346-918b-c1e4b8890f48" + "CENTRALUS:20171214T095127Z:c9abeeae-d8dd-4bb1-8002-942c0c223337" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/regenerateAdminKey/primary?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL3JlZ2VuZXJhdGVBZG1pbktleS9wcmltYXJ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657/regenerateAdminKey/primary?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3L3JlZ2VuZXJhdGVBZG1pbktleS9wcmltYXJ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ba1449b-a7d4-4516-a223-97872a726d6c" + "2ff866ab-81c4-4c91-b592-0db7df304c3f" ], "accept-language": [ "en-US" @@ -413,7 +413,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"19769DE0C8FB7B2DBCD96B9955BCCB74\",\"secondaryKey\":\"89C4D7B29492BB54A3B6626BA9F25372\"}", + "ResponseBody": "{\"primaryKey\":\"30FA20C46C174BF8BD0EC70A14625EFE\",\"secondaryKey\":\"390593E758D5938FF0AADC8E9FFD529F\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -425,7 +425,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:42 GMT" + "Thu, 14 Dec 2017 09:51:29 GMT" ], "Pragma": [ "no-cache" @@ -438,13 +438,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5ba1449b-a7d4-4516-a223-97872a726d6c" + "2ff866ab-81c4-4c91-b592-0db7df304c3f" ], "request-id": [ - "5ba1449b-a7d4-4516-a223-97872a726d6c" + "2ff866ab-81c4-4c91-b592-0db7df304c3f" ], "elapsed-time": [ - "1870" + "639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,25 +453,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1102" + "1194" ], "x-ms-correlation-request-id": [ - "f890e947-da82-423a-94e1-e62f09b4e590" + "5f571295-35e8-4ecd-82e2-a6ff44e89d64" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063742Z:f890e947-da82-423a-94e1-e62f09b4e590" + "CENTRALUS:20171214T095129Z:5f571295-35e8-4ecd-82e2-a6ff44e89d64" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772/regenerateAdminKey/secondary?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyL3JlZ2VuZXJhdGVBZG1pbktleS9zZWNvbmRhcnk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657/regenerateAdminKey/secondary?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3L3JlZ2VuZXJhdGVBZG1pbktleS9zZWNvbmRhcnk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f94e407c-325e-4aab-b3ff-b6bc82149742" + "9b003b65-bb5c-46a8-92aa-7f61d44819a7" ], "accept-language": [ "en-US" @@ -481,7 +481,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"primaryKey\":\"19769DE0C8FB7B2DBCD96B9955BCCB74\",\"secondaryKey\":\"80120455A19C1048B592A19616B2887A\"}", + "ResponseBody": "{\"primaryKey\":\"30FA20C46C174BF8BD0EC70A14625EFE\",\"secondaryKey\":\"76AFC67AF781745D45CB782402C7D963\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +493,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:43 GMT" + "Thu, 14 Dec 2017 09:51:29 GMT" ], "Pragma": [ "no-cache" @@ -506,13 +506,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f94e407c-325e-4aab-b3ff-b6bc82149742" + "9b003b65-bb5c-46a8-92aa-7f61d44819a7" ], "request-id": [ - "f94e407c-325e-4aab-b3ff-b6bc82149742" + "9b003b65-bb5c-46a8-92aa-7f61d44819a7" ], "elapsed-time": [ - "1554" + "335" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,25 +521,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1101" + "1193" ], "x-ms-correlation-request-id": [ - "46daadb6-a65d-4b1c-acf6-56d53b10a601" + "c2f2415d-2940-422f-b873-0ce3e874b55c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063743Z:46daadb6-a65d-4b1c-acf6-56d53b10a601" + "CENTRALUS:20171214T095129Z:c2f2415d-2940-422f-b873-0ce3e874b55c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4465/providers/Microsoft.Search/searchServices/azs-1772?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NDY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xNzcyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4702/providers/Microsoft.Search/searchServices/azs-8657?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NjU3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c8a5cdb-fe75-44fb-a7d1-6eb0f1fcfc08" + "3f0dc11f-fa66-4526-94f1-03fc2728a19e" ], "accept-language": [ "en-US" @@ -561,19 +561,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:48 GMT" + "Thu, 14 Dec 2017 09:51:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4c8a5cdb-fe75-44fb-a7d1-6eb0f1fcfc08" + "3f0dc11f-fa66-4526-94f1-03fc2728a19e" ], "request-id": [ - "4c8a5cdb-fe75-44fb-a7d1-6eb0f1fcfc08" + "3f0dc11f-fa66-4526-94f1-03fc2728a19e" ], "elapsed-time": [ - "733" + "677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,13 +582,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1100" + "1192" ], "x-ms-correlation-request-id": [ - "2bb28bde-cf3d-4e1c-9c90-789b3f80f58b" + "953edf7b-6623-4d64-b09f-b959b6517e73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063748Z:2bb28bde-cf3d-4e1c-9c90-789b3f80f58b" + "CENTRALUS:20171214T095131Z:953edf7b-6623-4d64-b09f-b959b6517e73" ] }, "StatusCode": 200 @@ -596,10 +596,10 @@ ], "Names": { "GenerateName": [ - "azsmnet4465" + "azsmnet4702" ], "GenerateServiceName": [ - "azs-1772" + "azs-8657" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json index e36a43c637eff..84cb400b6751e 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanCreateAndDeleteQueryKeys.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94960510-4599-4ae4-8884-e6865bbe82d9" + "e0926b9a-d172-47a7-80e1-ea6d1c492bde" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:53 GMT" + "Thu, 14 Dec 2017 11:04:20 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1114" ], "x-ms-request-id": [ - "2be3dd13-b7db-4893-8b4f-e9109305c21b" + "62df8cf6-5680-4d35-a027-dc85c70d9028" ], "x-ms-correlation-request-id": [ - "2be3dd13-b7db-4893-8b4f-e9109305c21b" + "62df8cf6-5680-4d35-a027-dc85c70d9028" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055553Z:2be3dd13-b7db-4893-8b4f-e9109305c21b" + "CENTRALUS:20171214T110421Z:62df8cf6-5680-4d35-a027-dc85c70d9028" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4913?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0OTEzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3788?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNzg4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "79af3ffe-56e2-41d7-8021-ed77f1578794" + "bff22de4-f9dc-4adb-9eb9-3f7857f4aeca" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913\",\r\n \"name\": \"azsmnet4913\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788\",\r\n \"name\": \"azsmnet3788\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:53 GMT" + "Thu, 14 Dec 2017 11:04:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1113" ], "x-ms-request-id": [ - "4450b363-9b52-4350-bb24-494b97941cfa" + "6f05ff90-9492-455d-a5c9-5b5e1533481f" ], "x-ms-correlation-request-id": [ - "4450b363-9b52-4350-bb24-494b97941cfa" + "6f05ff90-9492-455d-a5c9-5b5e1533481f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055553Z:4450b363-9b52-4350-bb24-494b97941cfa" + "CENTRALUS:20171214T110421Z:6f05ff90-9492-455d-a5c9-5b5e1533481f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "67" ], "x-ms-client-request-id": [ - "bac8e220-dc67-4b24-be66-d98e1737b928" + "a5655cc8-f22f-467f-a9a4-3d12f1984840" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608\",\r\n \"name\": \"azs-608\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538\",\r\n \"name\": \"azs-4538\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:55 GMT" + "Thu, 14 Dec 2017 11:04:23 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A55%3A55.8761401Z'\"" + "W/\"datetime'2017-12-14T11%3A04%3A23.3386029Z'\"" ], "x-ms-request-id": [ - "bac8e220-dc67-4b24-be66-d98e1737b928" + "a5655cc8-f22f-467f-a9a4-3d12f1984840" ], "request-id": [ - "bac8e220-dc67-4b24-be66-d98e1737b928" + "a5655cc8-f22f-467f-a9a4-3d12f1984840" ], "elapsed-time": [ - "1471" + "1179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1112" ], "x-ms-correlation-request-id": [ - "1a6d806e-9494-4677-8060-6b45011ae360" + "4de50474-c00d-4428-b9d6-0b89dac0cfc3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055555Z:1a6d806e-9494-4677-8060-6b45011ae360" + "CENTRALUS:20171214T110423Z:4de50474-c00d-4428-b9d6-0b89dac0cfc3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ffb815f-007e-417d-bf30-ffdb543740de" + "5f4e7541-e920-4e7b-ac4d-4aa4c735a219" ], "accept-language": [ "en-US" @@ -209,7 +209,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"E3B391C7FFCE201FBAA879D118424F28\",\r\n \"secondaryKey\": \"6326E481E758F499E9254CE084BBF597\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"C99811E1430E81864FBDAFADC7A44278\",\r\n \"secondaryKey\": \"7BCEEAE1671C2AF730BCEA8951AA669E\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:56 GMT" + "Thu, 14 Dec 2017 11:04:24 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7ffb815f-007e-417d-bf30-ffdb543740de" + "5f4e7541-e920-4e7b-ac4d-4aa4c735a219" ], "request-id": [ - "7ffb815f-007e-417d-bf30-ffdb543740de" + "5f4e7541-e920-4e7b-ac4d-4aa4c735a219" ], "elapsed-time": [ - "151" + "160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,25 +249,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1111" ], "x-ms-correlation-request-id": [ - "e80e9636-981d-45d1-84b8-0f1d488ddf14" + "a5378e81-c1fa-4b10-be30-980066026b23" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055556Z:e80e9636-981d-45d1-84b8-0f1d488ddf14" + "CENTRALUS:20171214T110424Z:a5378e81-c1fa-4b10-be30-980066026b23" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c5f04dc-7a67-4f20-adf6-bddc887536df" + "82b4aad6-ec0a-4843-8f92-9ebe48612e06" ], "accept-language": [ "en-US" @@ -277,7 +277,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"2AE8BA5ED03E4202DA395EE5C626B7E1\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"EB6E34146A7A35FA533A6BDDCF656F8F\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:56 GMT" + "Thu, 14 Dec 2017 11:04:24 GMT" ], "Pragma": [ "no-cache" @@ -302,10 +302,10 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6c5f04dc-7a67-4f20-adf6-bddc887536df" + "82b4aad6-ec0a-4843-8f92-9ebe48612e06" ], "request-id": [ - "6c5f04dc-7a67-4f20-adf6-bddc887536df" + "82b4aad6-ec0a-4843-8f92-9ebe48612e06" ], "elapsed-time": [ "128" @@ -317,25 +317,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14755" ], "x-ms-correlation-request-id": [ - "6f9f31a7-73e1-45e3-9600-79196771af23" + "07dcef10-5244-4656-aba6-5f787ff999ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055557Z:6f9f31a7-73e1-45e3-9600-79196771af23" + "CENTRALUS:20171214T110425Z:07dcef10-5244-4656-aba6-5f787ff999ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b239a3c-820a-4222-b73e-ba8ee83fdc21" + "a01d32d1-93ac-4b63-8e5a-f5348a619111" ], "accept-language": [ "en-US" @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"2AE8BA5ED03E4202DA395EE5C626B7E1\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"EB6E34146A7A35FA533A6BDDCF656F8F\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:57 GMT" + "Thu, 14 Dec 2017 11:04:25 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6b239a3c-820a-4222-b73e-ba8ee83fdc21" + "a01d32d1-93ac-4b63-8e5a-f5348a619111" ], "request-id": [ - "6b239a3c-820a-4222-b73e-ba8ee83fdc21" + "a01d32d1-93ac-4b63-8e5a-f5348a619111" ], "elapsed-time": [ - "147" + "131" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,25 +385,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14754" ], "x-ms-correlation-request-id": [ - "d0169e1c-6839-447c-bc50-a6582a9f28c2" + "0ef39619-9b9d-47dd-8524-6cfc097dd6bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055557Z:d0169e1c-6839-447c-bc50-a6582a9f28c2" + "CENTRALUS:20171214T110426Z:0ef39619-9b9d-47dd-8524-6cfc097dd6bc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d6f53ea-9bfc-4be2-95ff-1eb0fd97388d" + "75485af1-1884-4256-a20d-7bc984578190" ], "accept-language": [ "en-US" @@ -413,7 +413,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"2AE8BA5ED03E4202DA395EE5C626B7E1\"},{\"name\":\"my key\",\"key\":\"81169AD7E18D08B9F687A16AD5E98A54\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"EB6E34146A7A35FA533A6BDDCF656F8F\"},{\"name\":\"my key\",\"key\":\"3D12FBDADBD6BBF563B45A274445AD73\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -425,7 +425,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:57 GMT" + "Thu, 14 Dec 2017 11:04:25 GMT" ], "Pragma": [ "no-cache" @@ -438,13 +438,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6d6f53ea-9bfc-4be2-95ff-1eb0fd97388d" + "75485af1-1884-4256-a20d-7bc984578190" ], "request-id": [ - "6d6f53ea-9bfc-4be2-95ff-1eb0fd97388d" + "75485af1-1884-4256-a20d-7bc984578190" ], "elapsed-time": [ - "156" + "185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,25 +453,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14753" ], "x-ms-correlation-request-id": [ - "dcce6023-6d74-46b2-9e63-3b022d3c1e3d" + "12a9a4a3-c883-4005-9ce9-48962ac95d6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055558Z:dcce6023-6d74-46b2-9e63-3b022d3c1e3d" + "CENTRALUS:20171214T110426Z:12a9a4a3-c883-4005-9ce9-48962ac95d6f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b53d9169-352e-45c0-822f-b41855030eae" + "d599b038-89ac-46c9-b60e-9ca94f58b238" ], "accept-language": [ "en-US" @@ -481,7 +481,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"2AE8BA5ED03E4202DA395EE5C626B7E1\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"EB6E34146A7A35FA533A6BDDCF656F8F\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -493,7 +493,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:59 GMT" + "Thu, 14 Dec 2017 11:04:27 GMT" ], "Pragma": [ "no-cache" @@ -506,13 +506,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b53d9169-352e-45c0-822f-b41855030eae" + "d599b038-89ac-46c9-b60e-9ca94f58b238" ], "request-id": [ - "b53d9169-352e-45c0-822f-b41855030eae" + "d599b038-89ac-46c9-b60e-9ca94f58b238" ], "elapsed-time": [ - "153" + "156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -521,25 +521,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14752" ], "x-ms-correlation-request-id": [ - "8620b635-2162-4468-ac78-992104c82044" + "8160fa3c-7af5-4955-be18-a05a98fb8885" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055559Z:8620b635-2162-4468-ac78-992104c82044" + "CENTRALUS:20171214T110427Z:8160fa3c-7af5-4955-be18-a05a98fb8885" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/createQueryKey/my%20key?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvY3JlYXRlUXVlcnlLZXkvbXklMjBrZXk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/createQueryKey/my%20key?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2NyZWF0ZVF1ZXJ5S2V5L215JTIwa2V5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c844877c-70d7-48c0-bbf0-5b22692d8f16" + "a0b8ea66-8941-45f6-8906-78b910717c15" ], "accept-language": [ "en-US" @@ -549,7 +549,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"name\":\"my key\",\"key\":\"81169AD7E18D08B9F687A16AD5E98A54\"}", + "ResponseBody": "{\"name\":\"my key\",\"key\":\"3D12FBDADBD6BBF563B45A274445AD73\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -561,7 +561,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:57 GMT" + "Thu, 14 Dec 2017 11:04:25 GMT" ], "Pragma": [ "no-cache" @@ -574,13 +574,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c844877c-70d7-48c0-bbf0-5b22692d8f16" + "a0b8ea66-8941-45f6-8906-78b910717c15" ], "request-id": [ - "c844877c-70d7-48c0-bbf0-5b22692d8f16" + "a0b8ea66-8941-45f6-8906-78b910717c15" ], "elapsed-time": [ - "234" + "339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,25 +589,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1110" ], "x-ms-correlation-request-id": [ - "621326a0-8e0f-4726-8724-4ce8e22e8eb4" + "09a9b69e-2be8-4365-98dc-af985048dd2e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055558Z:621326a0-8e0f-4726-8724-4ce8e22e8eb4" + "CENTRALUS:20171214T110426Z:09a9b69e-2be8-4365-98dc-af985048dd2e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608/deleteQueryKey/81169AD7E18D08B9F687A16AD5E98A54?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDgvZGVsZXRlUXVlcnlLZXkvODExNjlBRDdFMThEMDhCOUY2ODdBMTZBRDVFOThBNTQ/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538/deleteQueryKey/3D12FBDADBD6BBF563B45A274445AD73?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4L2RlbGV0ZVF1ZXJ5S2V5LzNEMTJGQkRBREJENkJCRjU2M0I0NUEyNzQ0NDVBRDczP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "737fa60a-311c-4347-adf4-ea0db0713b0a" + "add550e7-37ab-40c7-b460-9ccb95488805" ], "accept-language": [ "en-US" @@ -626,19 +626,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:59 GMT" + "Thu, 14 Dec 2017 11:04:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "737fa60a-311c-4347-adf4-ea0db0713b0a" + "add550e7-37ab-40c7-b460-9ccb95488805" ], "request-id": [ - "737fa60a-311c-4347-adf4-ea0db0713b0a" + "add550e7-37ab-40c7-b460-9ccb95488805" ], "elapsed-time": [ - "220" + "185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -647,25 +647,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1109" ], "x-ms-correlation-request-id": [ - "0ecb5b49-a1b4-40bf-8a2e-963dfb99bbc0" + "c55d14b4-68b8-4409-924f-6d62dfae69e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055559Z:0ecb5b49-a1b4-40bf-8a2e-963dfb99bbc0" + "CENTRALUS:20171214T110427Z:c55d14b4-68b8-4409-924f-6d62dfae69e4" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4913/providers/Microsoft.Search/searchServices/azs-608?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0OTEzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MDg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3788/providers/Microsoft.Search/searchServices/azs-4538?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNzg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35b6ee57-af13-4e8e-bd3b-ab4b930de5af" + "ab70734c-c8e9-4a54-9cd5-2b6c5a0baa8b" ], "accept-language": [ "en-US" @@ -687,19 +687,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:01 GMT" + "Thu, 14 Dec 2017 11:04:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "35b6ee57-af13-4e8e-bd3b-ab4b930de5af" + "ab70734c-c8e9-4a54-9cd5-2b6c5a0baa8b" ], "request-id": [ - "35b6ee57-af13-4e8e-bd3b-ab4b930de5af" + "ab70734c-c8e9-4a54-9cd5-2b6c5a0baa8b" ], "elapsed-time": [ - "1435" + "656" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,13 +708,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1108" ], "x-ms-correlation-request-id": [ - "0be2e2c5-5438-4b29-8009-9ccee01e57ad" + "b1ed248d-4d2c-4a1b-bf6a-590f0b91086a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055601Z:0be2e2c5-5438-4b29-8009-9ccee01e57ad" + "CENTRALUS:20171214T110429Z:b1ed248d-4d2c-4a1b-bf6a-590f0b91086a" ] }, "StatusCode": 200 @@ -722,10 +722,10 @@ ], "Names": { "GenerateName": [ - "azsmnet4913" + "azsmnet3788" ], "GenerateServiceName": [ - "azs-608" + "azs-4538" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json index dc69d0cbaf330..274817bccd871 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/CanListQueryKeys.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af839ae1-4dc3-413d-a321-a895b0815544" + "ee669e82-7dc2-4afa-a010-43157906feb2" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:37 GMT" + "Thu, 14 Dec 2017 11:04:11 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1120" ], "x-ms-request-id": [ - "143675c6-e076-46c3-b28d-40936490040b" + "270b6ba2-82eb-4b6d-add4-4f8f092c09c0" ], "x-ms-correlation-request-id": [ - "143675c6-e076-46c3-b28d-40936490040b" + "270b6ba2-82eb-4b6d-add4-4f8f092c09c0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055538Z:143675c6-e076-46c3-b28d-40936490040b" + "CENTRALUS:20171214T110411Z:270b6ba2-82eb-4b6d-add4-4f8f092c09c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6930?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2OTMwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1449?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNDQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "156e8c5d-acad-47d5-8b71-370d835b6b6a" + "2bfc26d7-51ae-4591-acec-9dd53b1a3c9c" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930\",\r\n \"name\": \"azsmnet6930\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449\",\r\n \"name\": \"azsmnet1449\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:38 GMT" + "Thu, 14 Dec 2017 11:04:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1119" ], "x-ms-request-id": [ - "b569ea55-59e2-4cc6-b701-64ce21f498a3" + "d3120f37-2522-496c-be03-21308de5f55a" ], "x-ms-correlation-request-id": [ - "b569ea55-59e2-4cc6-b701-64ce21f498a3" + "d3120f37-2522-496c-be03-21308de5f55a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055539Z:b569ea55-59e2-4cc6-b701-64ce21f498a3" + "CENTRALUS:20171214T110412Z:d3120f37-2522-496c-be03-21308de5f55a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449/providers/Microsoft.Search/searchServices/azs-5913?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01OTEzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "67" ], "x-ms-client-request-id": [ - "132e29ea-78cb-4549-b685-34ae1813e838" + "367e0af3-3c1c-467c-97fe-b7f29d6dc3ab" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895\",\r\n \"name\": \"azs-8895\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449/providers/Microsoft.Search/searchServices/azs-5913\",\r\n \"name\": \"azs-5913\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:47 GMT" + "Thu, 14 Dec 2017 11:04:14 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A55%3A47.1887976Z'\"" + "W/\"datetime'2017-12-14T11%3A04%3A14.2458702Z'\"" ], "x-ms-request-id": [ - "132e29ea-78cb-4549-b685-34ae1813e838" + "367e0af3-3c1c-467c-97fe-b7f29d6dc3ab" ], "request-id": [ - "132e29ea-78cb-4549-b685-34ae1813e838" + "367e0af3-3c1c-467c-97fe-b7f29d6dc3ab" ], "elapsed-time": [ - "6640" + "1875" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1118" ], "x-ms-correlation-request-id": [ - "05f19831-bb51-4837-a974-fd221483b29b" + "1a3d06ae-0224-4b1e-97d2-caf180c3cc9c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055547Z:05f19831-bb51-4837-a974-fd221483b29b" + "CENTRALUS:20171214T110415Z:1a3d06ae-0224-4b1e-97d2-caf180c3cc9c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449/providers/Microsoft.Search/searchServices/azs-5913/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01OTEzL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a5a9dd3-faeb-427f-aed9-9ed67635a803" + "abb422f3-1485-48dc-9417-08b28b939798" ], "accept-language": [ "en-US" @@ -209,7 +209,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"1D070B323639680F25EC57136B776A68\",\r\n \"secondaryKey\": \"7C1A904F3B00DC9BFED5C467FD0C1ED0\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"D55B29D7FAE356AD816E0B15A076A043\",\r\n \"secondaryKey\": \"A3F2AD2EF5C4746B67EE8B488D9A3DBF\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:48 GMT" + "Thu, 14 Dec 2017 11:04:16 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2a5a9dd3-faeb-427f-aed9-9ed67635a803" + "abb422f3-1485-48dc-9417-08b28b939798" ], "request-id": [ - "2a5a9dd3-faeb-427f-aed9-9ed67635a803" + "abb422f3-1485-48dc-9417-08b28b939798" ], "elapsed-time": [ - "167" + "588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,25 +249,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1117" ], "x-ms-correlation-request-id": [ - "5b34bd56-7256-4647-9673-6d49efd3bdcd" + "dc7c3e2a-325e-41b2-93ac-d4ca2370356b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055548Z:5b34bd56-7256-4647-9673-6d49efd3bdcd" + "CENTRALUS:20171214T110416Z:dc7c3e2a-325e-41b2-93ac-d4ca2370356b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449/providers/Microsoft.Search/searchServices/azs-5913/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01OTEzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b28acf6-c3ef-4d73-a345-5122ce76f0e3" + "675569c6-340a-48cd-aeb3-7f1bf17ba9dc" ], "accept-language": [ "en-US" @@ -277,7 +277,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"89B7636851C3EA02D19C03C0F09C8AA5\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3CA4127873D6D2251AD79E1F73707C4D\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:48 GMT" + "Thu, 14 Dec 2017 11:04:16 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1b28acf6-c3ef-4d73-a345-5122ce76f0e3" + "675569c6-340a-48cd-aeb3-7f1bf17ba9dc" ], "request-id": [ - "1b28acf6-c3ef-4d73-a345-5122ce76f0e3" + "675569c6-340a-48cd-aeb3-7f1bf17ba9dc" ], "elapsed-time": [ - "119" + "289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,25 +317,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14757" ], "x-ms-correlation-request-id": [ - "aa34d0a1-0571-480a-9a35-b727a1d02fd9" + "9f4c82cf-fc14-41cc-938b-55e9082fa663" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055549Z:aa34d0a1-0571-480a-9a35-b727a1d02fd9" + "CENTRALUS:20171214T110417Z:9f4c82cf-fc14-41cc-938b-55e9082fa663" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449/providers/Microsoft.Search/searchServices/azs-5913/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01OTEzL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56477d7b-1c0a-4e42-9030-ac38c2d9761c" + "75e62221-de1d-4911-8a65-7bf683c9355f" ], "accept-language": [ "en-US" @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"89B7636851C3EA02D19C03C0F09C8AA5\"}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"name\":null,\"key\":\"3CA4127873D6D2251AD79E1F73707C4D\"}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:49 GMT" + "Thu, 14 Dec 2017 11:04:17 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "56477d7b-1c0a-4e42-9030-ac38c2d9761c" + "75e62221-de1d-4911-8a65-7bf683c9355f" ], "request-id": [ - "56477d7b-1c0a-4e42-9030-ac38c2d9761c" + "75e62221-de1d-4911-8a65-7bf683c9355f" ], "elapsed-time": [ - "303" + "161" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,25 +385,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14756" ], "x-ms-correlation-request-id": [ - "63928270-8108-4253-aaf4-782248f9646f" + "9bf85a4a-6170-4dde-905d-af3361e9f428" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055549Z:63928270-8108-4253-aaf4-782248f9646f" + "CENTRALUS:20171214T110418Z:9bf85a4a-6170-4dde-905d-af3361e9f428" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6930/providers/Microsoft.Search/searchServices/azs-8895?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2OTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04ODk1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1449/providers/Microsoft.Search/searchServices/azs-5913?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNDQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01OTEzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f45678a6-f782-4a0a-b6f4-83d3a3b4dd9f" + "643fc728-aabb-4c22-a5a1-e22a39eb4c3a" ], "accept-language": [ "en-US" @@ -425,19 +425,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:55:52 GMT" + "Thu, 14 Dec 2017 11:04:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f45678a6-f782-4a0a-b6f4-83d3a3b4dd9f" + "643fc728-aabb-4c22-a5a1-e22a39eb4c3a" ], "request-id": [ - "f45678a6-f782-4a0a-b6f4-83d3a3b4dd9f" + "643fc728-aabb-4c22-a5a1-e22a39eb4c3a" ], "elapsed-time": [ - "1075" + "587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -446,13 +446,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1116" ], "x-ms-correlation-request-id": [ - "29d68521-fe4e-4ace-8609-d332906fab42" + "4108b9b4-7d1a-4307-b7e7-65e93f52e6af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055552Z:29d68521-fe4e-4ace-8609-d332906fab42" + "CENTRALUS:20171214T110419Z:4108b9b4-7d1a-4307-b7e7-65e93f52e6af" ] }, "StatusCode": 200 @@ -460,10 +460,10 @@ ], "Names": { "GenerateName": [ - "azsmnet6930" + "azsmnet1449" ], "GenerateServiceName": [ - "azs-8895" + "azs-5913" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json index 04302a4892bd6..8d92b93f0846a 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.QueryKeyTests/DeleteQueryKeyIsIdempotent.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfbc9878-2a28-4449-8f45-7d6ad34021a6" + "fb983591-8651-4f4c-a08a-e8282ece390f" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:02 GMT" + "Thu, 14 Dec 2017 11:04:29 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1106" ], "x-ms-request-id": [ - "147d11a0-0822-456b-98e8-3e847e39090d" + "142a5215-987f-45d4-8f5d-fcae6492e8e7" ], "x-ms-correlation-request-id": [ - "147d11a0-0822-456b-98e8-3e847e39090d" + "142a5215-987f-45d4-8f5d-fcae6492e8e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055602Z:147d11a0-0822-456b-98e8-3e847e39090d" + "CENTRALUS:20171214T110430Z:142a5215-987f-45d4-8f5d-fcae6492e8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet103?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxMDM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9122?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "a55c12d3-417e-42cc-af73-0463f1b7d178" + "83deca1e-60a9-42d1-ab3f-b9d41b829e45" ], "accept-language": [ "en-US" @@ -81,10 +81,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103\",\r\n \"name\": \"azsmnet103\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122\",\r\n \"name\": \"azsmnet9122\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:02 GMT" + "Thu, 14 Dec 2017 11:04:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1105" ], "x-ms-request-id": [ - "86b6d585-3915-4345-930b-9ea4895e180f" + "cc13bf25-0a46-4a33-a028-480026ce54e7" ], "x-ms-correlation-request-id": [ - "86b6d585-3915-4345-930b-9ea4895e180f" + "cc13bf25-0a46-4a33-a028-480026ce54e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055603Z:86b6d585-3915-4345-930b-9ea4895e180f" + "CENTRALUS:20171214T110430Z:cc13bf25-0a46-4a33-a028-480026ce54e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "67" ], "x-ms-client-request-id": [ - "d005c8ca-8437-4de7-b6e8-e9653b3bc732" + "e7b18aeb-984a-45db-a24e-76fdd56dd0e7" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123\",\r\n \"name\": \"azs-9123\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619\",\r\n \"name\": \"azs-7619\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "384" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:06 GMT" + "Thu, 14 Dec 2017 11:04:32 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A05.2000944Z'\"" + "W/\"datetime'2017-12-14T11%3A04%3A32.6655597Z'\"" ], "x-ms-request-id": [ - "d005c8ca-8437-4de7-b6e8-e9653b3bc732" + "e7b18aeb-984a-45db-a24e-76fdd56dd0e7" ], "request-id": [ - "d005c8ca-8437-4de7-b6e8-e9653b3bc732" + "e7b18aeb-984a-45db-a24e-76fdd56dd0e7" ], "elapsed-time": [ - "1710" + "758" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1104" ], "x-ms-correlation-request-id": [ - "1bac0ef2-1191-453d-843d-5c27a80c02d6" + "d40fb370-50a8-4b34-8ead-152bb48295c2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055605Z:1bac0ef2-1191-453d-843d-5c27a80c02d6" + "CENTRALUS:20171214T110432Z:d40fb370-50a8-4b34-8ead-152bb48295c2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvbGlzdEFkbWluS2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36eabe6e-4256-42a5-84e1-05c9772e8024" + "0fb10b68-9bff-4467-afa4-841946a8e849" ], "accept-language": [ "en-US" @@ -209,7 +209,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"0008EB6FCC263B3EFAFEB45276153F1E\",\r\n \"secondaryKey\": \"21D66946D6E6B8BD1E7DBDF364A4D297\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"B98CF53317F5974E715D80FDC987D7DF\",\r\n \"secondaryKey\": \"EA71AC6D5DDB385DBFAC5DD1E076F97D\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:06 GMT" + "Thu, 14 Dec 2017 11:04:33 GMT" ], "Pragma": [ "no-cache" @@ -234,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36eabe6e-4256-42a5-84e1-05c9772e8024" + "0fb10b68-9bff-4467-afa4-841946a8e849" ], "request-id": [ - "36eabe6e-4256-42a5-84e1-05c9772e8024" + "0fb10b68-9bff-4467-afa4-841946a8e849" ], "elapsed-time": [ - "126" + "192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,25 +249,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1103" ], "x-ms-correlation-request-id": [ - "181a2e37-7cc1-43ad-92d9-c70b34546103" + "0e70f38a-f9ef-4f82-a2ba-c3f6cd76da3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055606Z:181a2e37-7cc1-43ad-92d9-c70b34546103" + "CENTRALUS:20171214T110433Z:0e70f38a-f9ef-4f82-a2ba-c3f6cd76da3e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvbGlzdFF1ZXJ5S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20a52f69-ba6e-41a2-b619-83ea600cbfb0" + "7219d225-e76b-44ef-893f-f3e8a7157595" ], "accept-language": [ "en-US" @@ -277,7 +277,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3CB8687842792F9D8B0CA51E3E179BFD\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"FD6176D325F8D137575D453456AFB715\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +289,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:07 GMT" + "Thu, 14 Dec 2017 11:04:34 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "20a52f69-ba6e-41a2-b619-83ea600cbfb0" + "7219d225-e76b-44ef-893f-f3e8a7157595" ], "request-id": [ - "20a52f69-ba6e-41a2-b619-83ea600cbfb0" + "7219d225-e76b-44ef-893f-f3e8a7157595" ], "elapsed-time": [ - "116" + "111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,25 +317,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14751" ], "x-ms-correlation-request-id": [ - "e0907b8d-b418-43de-bcae-b1d3bcead4db" + "c2e11f31-94b4-48b7-b65c-cb921c4fb425" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055607Z:e0907b8d-b418-43de-bcae-b1d3bcead4db" + "CENTRALUS:20171214T110434Z:c2e11f31-94b4-48b7-b65c-cb921c4fb425" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/createQueryKey/my%20key?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvY3JlYXRlUXVlcnlLZXkvbXklMjBrZXk/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619/createQueryKey/my%20key?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5L2NyZWF0ZVF1ZXJ5S2V5L215JTIwa2V5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c79569cf-c9f0-41b5-b708-2f9d2a814634" + "f421ce48-4463-4973-9b43-ff82fad57130" ], "accept-language": [ "en-US" @@ -345,7 +345,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"name\":\"my key\",\"key\":\"79E697DF0631C5A48BC5BF3E68FC9B28\"}", + "ResponseBody": "{\"name\":\"my key\",\"key\":\"516483CF43EE483ACCBF565C3B7F73D0\"}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -357,7 +357,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:07 GMT" + "Thu, 14 Dec 2017 11:04:35 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +370,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c79569cf-c9f0-41b5-b708-2f9d2a814634" + "f421ce48-4463-4973-9b43-ff82fad57130" ], "request-id": [ - "c79569cf-c9f0-41b5-b708-2f9d2a814634" + "f421ce48-4463-4973-9b43-ff82fad57130" ], "elapsed-time": [ - "163" + "371" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -385,25 +385,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1102" ], "x-ms-correlation-request-id": [ - "9d4d10a5-8137-4525-8498-9cd624617b51" + "7aae606a-24eb-46e8-b547-bfe32dec352c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055607Z:9d4d10a5-8137-4525-8498-9cd624617b51" + "CENTRALUS:20171214T110435Z:7aae606a-24eb-46e8-b547-bfe32dec352c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/deleteQueryKey/79E697DF0631C5A48BC5BF3E68FC9B28?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvZGVsZXRlUXVlcnlLZXkvNzlFNjk3REYwNjMxQzVBNDhCQzVCRjNFNjhGQzlCMjg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619/deleteQueryKey/516483CF43EE483ACCBF565C3B7F73D0?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5L2RlbGV0ZVF1ZXJ5S2V5LzUxNjQ4M0NGNDNFRTQ4M0FDQ0JGNTY1QzNCN0Y3M0QwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c7f9f57-a32a-4d3c-a0eb-a4d65de8e60b" + "c93738e3-cf7a-439b-84bc-111d1b6be580" ], "accept-language": [ "en-US" @@ -422,19 +422,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:08 GMT" + "Thu, 14 Dec 2017 11:04:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3c7f9f57-a32a-4d3c-a0eb-a4d65de8e60b" + "c93738e3-cf7a-439b-84bc-111d1b6be580" ], "request-id": [ - "3c7f9f57-a32a-4d3c-a0eb-a4d65de8e60b" + "c93738e3-cf7a-439b-84bc-111d1b6be580" ], "elapsed-time": [ - "235" + "1129" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,25 +443,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1101" ], "x-ms-correlation-request-id": [ - "860067a1-c1a8-4770-b23a-2ca18ea04311" + "726d248b-bb49-4c23-97bc-c186f5c22054" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055608Z:860067a1-c1a8-4770-b23a-2ca18ea04311" + "CENTRALUS:20171214T110436Z:726d248b-bb49-4c23-97bc-c186f5c22054" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123/deleteQueryKey/79E697DF0631C5A48BC5BF3E68FC9B28?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjMvZGVsZXRlUXVlcnlLZXkvNzlFNjk3REYwNjMxQzVBNDhCQzVCRjNFNjhGQzlCMjg/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619/deleteQueryKey/516483CF43EE483ACCBF565C3B7F73D0?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5L2RlbGV0ZVF1ZXJ5S2V5LzUxNjQ4M0NGNDNFRTQ4M0FDQ0JGNTY1QzNCN0Y3M0QwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "129b3e81-6243-48b7-80b0-87d5f6be161b" + "d4e8e92d-de25-4315-a6a8-59dd387fef59" ], "accept-language": [ "en-US" @@ -471,7 +471,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"error\":{\"code\":\"Unknown\",\"message\":\"This API key does not exist for service 'azs-9123'. RequestId: 129b3e81-6243-48b7-80b0-87d5f6be161b\",\"target\":null,\"details\":null}}", + "ResponseBody": "{\"error\":{\"code\":\"Unknown\",\"message\":\"This API key does not exist for service 'azs-7619'. RequestId: d4e8e92d-de25-4315-a6a8-59dd387fef59\",\"target\":null,\"details\":null}}", "ResponseHeaders": { "Content-Length": [ "169" @@ -489,19 +489,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:10 GMT" + "Thu, 14 Dec 2017 11:04:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "129b3e81-6243-48b7-80b0-87d5f6be161b" + "d4e8e92d-de25-4315-a6a8-59dd387fef59" ], "request-id": [ - "129b3e81-6243-48b7-80b0-87d5f6be161b" + "d4e8e92d-de25-4315-a6a8-59dd387fef59" ], "elapsed-time": [ - "193" + "168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,25 +510,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1100" ], "x-ms-correlation-request-id": [ - "d79d987a-e156-4a02-849b-c41552691f05" + "42073093-8fdc-40f1-a0fc-acce065a9d01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055610Z:d79d987a-e156-4a02-849b-c41552691f05" + "CENTRALUS:20171214T110436Z:42073093-8fdc-40f1-a0fc-acce065a9d01" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet103/providers/Microsoft.Search/searchServices/azs-9123?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTkxMjM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9122/providers/Microsoft.Search/searchServices/azs-7619?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NjE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63e488f4-effb-433f-be49-6bda6a8c27f6" + "c2a7ca4e-885c-446f-b4a2-3e51d24f7479" ], "accept-language": [ "en-US" @@ -550,19 +550,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:11 GMT" + "Thu, 14 Dec 2017 11:04:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "63e488f4-effb-433f-be49-6bda6a8c27f6" + "c2a7ca4e-885c-446f-b4a2-3e51d24f7479" ], "request-id": [ - "63e488f4-effb-433f-be49-6bda6a8c27f6" + "c2a7ca4e-885c-446f-b4a2-3e51d24f7479" ], "elapsed-time": [ - "850" + "606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -571,13 +571,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1099" ], "x-ms-correlation-request-id": [ - "10f25b8f-ddb9-42d7-9d79-33429e621c93" + "78c61410-49c5-4134-9591-0b5d81100446" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055612Z:10f25b8f-ddb9-42d7-9d79-33429e621c93" + "CENTRALUS:20171214T110438Z:78c61410-49c5-4134-9591-0b5d81100446" ] }, "StatusCode": 200 @@ -585,10 +585,10 @@ ], "Names": { "GenerateName": [ - "azsmnet103" + "azsmnet9122" ], "GenerateServiceName": [ - "azs-9123" + "azs-7619" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json index 47cbfc16a3d06..cfab31218f91f 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndDeleteService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0a6576f-62d4-4678-95f3-d42640e372a8" + "a7e3b46f-8071-4bff-80a4-b25917866d13" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:39 GMT" + "Thu, 14 Dec 2017 10:24:31 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1144" + "1172" ], "x-ms-request-id": [ - "75be369a-8ed6-4de7-af77-bc51cbfdd578" + "552342c5-6aab-4422-bee0-27589363a7fd" ], "x-ms-correlation-request-id": [ - "75be369a-8ed6-4de7-af77-bc51cbfdd578" + "552342c5-6aab-4422-bee0-27589363a7fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055639Z:75be369a-8ed6-4de7-af77-bc51cbfdd578" + "CENTRALUS:20171214T102431Z:552342c5-6aab-4422-bee0-27589363a7fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6050?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MDUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7022?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MDIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "4f2f1543-9ea4-4c34-993e-3071321a07cf" + "1e640476-9b28-49b0-a6e1-1d6e98802fef" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050\",\r\n \"name\": \"azsmnet6050\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7022\",\r\n \"name\": \"azsmnet7022\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:39 GMT" + "Thu, 14 Dec 2017 10:24:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1143" + "1171" ], "x-ms-request-id": [ - "eec80457-5761-491e-b8fc-9205649005f1" + "a2a4f7de-c369-4c71-93f0-8ac137aadd2d" ], "x-ms-correlation-request-id": [ - "eec80457-5761-491e-b8fc-9205649005f1" + "a2a4f7de-c369-4c71-93f0-8ac137aadd2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055639Z:eec80457-5761-491e-b8fc-9205649005f1" + "CENTRALUS:20171214T102431Z:a2a4f7de-c369-4c71-93f0-8ac137aadd2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices/azs-4042?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDQyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7022/providers/Microsoft.Search/searchServices/azs-4436?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NDM2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "141" ], "x-ms-client-request-id": [ - "b68eccbc-9268-4a4c-8718-f98e4935e92e" + "c0963918-23f9-47ee-8523-8c24ccb091a1" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices/azs-4042\",\"name\":\"azs-4042\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7022/providers/Microsoft.Search/searchServices/azs-4436\",\"name\":\"azs-4436\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:41 GMT" + "Thu, 14 Dec 2017 10:24:46 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A41.7211677Z'\"" + "W/\"datetime'2017-12-14T10%3A24%3A42.782417Z'\"" ], "x-ms-request-id": [ - "b68eccbc-9268-4a4c-8718-f98e4935e92e" + "c0963918-23f9-47ee-8523-8c24ccb091a1" ], "request-id": [ - "b68eccbc-9268-4a4c-8718-f98e4935e92e" + "c0963918-23f9-47ee-8523-8c24ccb091a1" ], "elapsed-time": [ - "940" + "861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1142" + "1170" ], "x-ms-correlation-request-id": [ - "a799e44d-e0ea-41cf-87bf-afb176feb370" + "b74d6a61-2d26-45fb-88bb-dfe3d0ff950a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055641Z:a799e44d-e0ea-41cf-87bf-afb176feb370" + "CENTRALUS:20171214T102446Z:b74d6a61-2d26-45fb-88bb-dfe3d0ff950a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices/azs-4042?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MDQyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7022/providers/Microsoft.Search/searchServices/azs-4436?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NDM2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24c6ba2e-bf9a-4036-9a21-9e6953a37f67" + "9762ecba-071c-4aca-8158-113189048022" ], "accept-language": [ "en-US" @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:46 GMT" + "Thu, 14 Dec 2017 10:24:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "24c6ba2e-bf9a-4036-9a21-9e6953a37f67" + "9762ecba-071c-4aca-8158-113189048022" ], "request-id": [ - "24c6ba2e-bf9a-4036-9a21-9e6953a37f67" + "9762ecba-071c-4aca-8158-113189048022" ], "elapsed-time": [ - "842" + "553" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,25 +242,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1141" + "1169" ], "x-ms-correlation-request-id": [ - "9f0efaea-5b10-43cc-8c77-95f95d1b46a6" + "848e8e57-7c06-4708-9317-0149dd0db528" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055646Z:9f0efaea-5b10-43cc-8c77-95f95d1b46a6" + "CENTRALUS:20171214T102447Z:848e8e57-7c06-4708-9317-0149dd0db528" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6050/providers/Microsoft.Search/searchServices?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MDUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7022/providers/Microsoft.Search/searchServices?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3MDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef1b587e-ff65-49a5-8cc7-72b52161d902" + "2e664f54-7d9f-491b-beed-354f21d93938" ], "accept-language": [ "en-US" @@ -282,7 +282,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:46 GMT" + "Thu, 14 Dec 2017 10:24:47 GMT" ], "Pragma": [ "no-cache" @@ -295,13 +295,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ef1b587e-ff65-49a5-8cc7-72b52161d902" + "2e664f54-7d9f-491b-beed-354f21d93938" ], "request-id": [ - "ef1b587e-ff65-49a5-8cc7-72b52161d902" + "2e664f54-7d9f-491b-beed-354f21d93938" ], "elapsed-time": [ - "41" + "42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -310,13 +310,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14880" ], "x-ms-correlation-request-id": [ - "de779920-5226-41bf-adf0-0aa9c63021ae" + "8121f3ce-1d39-4f3f-9c1f-f14fc1715c93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055646Z:de779920-5226-41bf-adf0-0aa9c63021ae" + "CENTRALUS:20171214T102447Z:8121f3ce-1d39-4f3f-9c1f-f14fc1715c93" ] }, "StatusCode": 200 @@ -324,10 +324,10 @@ ], "Names": { "GenerateName": [ - "azsmnet6050" + "azsmnet7022" ], "GenerateServiceName": [ - "azs-4042" + "azs-4436" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json index 07707e2d3a9c8..a323159e2fb2d 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateAndGetService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00264ef5-d1fd-429c-8add-3fff910caf0a" + "40641b2c-0e26-47dc-9915-dcae35f80cca" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:17 GMT" + "Thu, 14 Dec 2017 11:03:47 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1119" + "1143" ], "x-ms-request-id": [ - "1d7dae9e-7628-4475-814e-bb37314ef2d4" + "500e66d1-ec48-4eb1-9bcf-8879c041eb3e" ], "x-ms-correlation-request-id": [ - "1d7dae9e-7628-4475-814e-bb37314ef2d4" + "500e66d1-ec48-4eb1-9bcf-8879c041eb3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063717Z:1d7dae9e-7628-4475-814e-bb37314ef2d4" + "CENTRALUS:20171214T110348Z:500e66d1-ec48-4eb1-9bcf-8879c041eb3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8704?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8149?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4MTQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "4d7c86c9-e89f-482c-ac3b-524d3300ff2e" + "91effc46-51b9-4694-9924-aaf26b5deb0e" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704\",\r\n \"name\": \"azsmnet8704\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8149\",\r\n \"name\": \"azsmnet8149\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:17 GMT" + "Thu, 14 Dec 2017 11:03:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1118" + "1142" ], "x-ms-request-id": [ - "b35ed80f-3073-4159-b9a6-70b111817b3c" + "35600864-fdec-4dd0-a61f-5fcad2248711" ], "x-ms-correlation-request-id": [ - "b35ed80f-3073-4159-b9a6-70b111817b3c" + "35600864-fdec-4dd0-a61f-5fcad2248711" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063717Z:b35ed80f-3073-4159-b9a6-70b111817b3c" + "CENTRALUS:20171214T110348Z:35600864-fdec-4dd0-a61f-5fcad2248711" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzI4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8149/providers/Microsoft.Search/searchServices/azs-5800?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "141" ], "x-ms-client-request-id": [ - "911418ad-f135-48b5-9a3c-838db2f90ee4" + "839d88e8-2f7d-48b7-bcfe-a6f9301131ce" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728\",\"name\":\"azs-9728\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8149/providers/Microsoft.Search/searchServices/azs-5800\",\"name\":\"azs-5800\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:19 GMT" + "Thu, 14 Dec 2017 11:03:51 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A37%3A19.3241397Z'\"" + "W/\"datetime'2017-12-14T11%3A03%3A51.2637996Z'\"" ], "x-ms-request-id": [ - "911418ad-f135-48b5-9a3c-838db2f90ee4" + "839d88e8-2f7d-48b7-bcfe-a6f9301131ce" ], "request-id": [ - "911418ad-f135-48b5-9a3c-838db2f90ee4" + "839d88e8-2f7d-48b7-bcfe-a6f9301131ce" ], "elapsed-time": [ - "932" + "1810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "1141" ], "x-ms-correlation-request-id": [ - "c196aca7-e0bf-4cb0-b97e-6408edd35cee" + "ac605473-3d44-4896-a5fd-bfa11b21e3a5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063719Z:c196aca7-e0bf-4cb0-b97e-6408edd35cee" + "CENTRALUS:20171214T110351Z:ac605473-3d44-4896-a5fd-bfa11b21e3a5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NzI4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8149/providers/Microsoft.Search/searchServices/azs-5800?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4MTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01ODAwP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f00d7ef-affa-4218-b812-275d3ccdcd44" + "29c02e4a-d5a5-459f-9df5-51d53c52ae68" ], "accept-language": [ "en-US" @@ -209,7 +209,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8704/providers/Microsoft.Search/searchServices/azs-9728\",\"name\":\"azs-9728\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8149/providers/Microsoft.Search/searchServices/azs-5800\",\"name\":\"azs-5800\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -221,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:19 GMT" + "Thu, 14 Dec 2017 11:03:51 GMT" ], "Pragma": [ "no-cache" @@ -230,20 +230,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A37%3A19.3241397Z'\"" + "W/\"datetime'2017-12-14T11%3A03%3A51.2637996Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6f00d7ef-affa-4218-b812-275d3ccdcd44" + "29c02e4a-d5a5-459f-9df5-51d53c52ae68" ], "request-id": [ - "6f00d7ef-affa-4218-b812-275d3ccdcd44" + "29c02e4a-d5a5-459f-9df5-51d53c52ae68" ], "elapsed-time": [ - "116" + "200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -252,13 +252,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14759" ], "x-ms-correlation-request-id": [ - "c23ba146-de8b-4d4a-832c-aeaed75e8163" + "424581c3-80b6-4798-8bdb-32839c7f25eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063719Z:c23ba146-de8b-4d4a-832c-aeaed75e8163" + "CENTRALUS:20171214T110351Z:424581c3-80b6-4798-8bdb-32839c7f25eb" ] }, "StatusCode": 200 @@ -266,10 +266,10 @@ ], "Names": { "GenerateName": [ - "azsmnet8704" + "azsmnet8149" ], "GenerateServiceName": [ - "azs-9728" + "azs-5800" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json index 422ab1d8fa8a0..0653528309b90 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateBasicService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e5dc933-b72d-4714-9c28-5fb893372c7d" + "571021ff-2575-40af-9648-8c31595d5632" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:23 GMT" + "Thu, 14 Dec 2017 10:08:57 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1162" + "1191" ], "x-ms-request-id": [ - "bbb78cc9-681d-4ebd-88ce-1d2304680e87" + "64006c50-bd0c-4e18-a1c2-c6c295ae9f64" ], "x-ms-correlation-request-id": [ - "bbb78cc9-681d-4ebd-88ce-1d2304680e87" + "64006c50-bd0c-4e18-a1c2-c6c295ae9f64" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055623Z:bbb78cc9-681d-4ebd-88ce-1d2304680e87" + "CENTRALUS:20171214T100857Z:64006c50-bd0c-4e18-a1c2-c6c295ae9f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3474?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNDc0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8547?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NTQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "0bdec6da-a6a0-4973-8cb0-2c4f16f51fd9" + "a56a8cae-ab42-4696-8231-dc00c01809a5" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474\",\r\n \"name\": \"azsmnet3474\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8547\",\r\n \"name\": \"azsmnet8547\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:23 GMT" + "Thu, 14 Dec 2017 10:08:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1161" + "1190" ], "x-ms-request-id": [ - "bc210321-9cb3-4536-ba5b-c48f568ee499" + "6f640466-67db-48d0-8f9d-f48532128bee" ], "x-ms-correlation-request-id": [ - "bc210321-9cb3-4536-ba5b-c48f568ee499" + "6f640466-67db-48d0-8f9d-f48532128bee" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055623Z:bc210321-9cb3-4536-ba5b-c48f568ee499" + "CENTRALUS:20171214T100857Z:6f640466-67db-48d0-8f9d-f48532128bee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474/providers/Microsoft.Search/searchServices/azs-8419?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8547/providers/Microsoft.Search/searchServices/azs-4258?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjU4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "142" ], "x-ms-client-request-id": [ - "5cf5beba-9bcc-42f0-a41a-306ffc37d98f" + "b4c9bf07-29fa-43c3-b72d-7fdd8e9b680c" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474/providers/Microsoft.Search/searchServices/azs-8419\",\"name\":\"azs-8419\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8547/providers/Microsoft.Search/searchServices/azs-4258\",\"name\":\"azs-4258\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", "ResponseHeaders": { "Content-Length": [ "386" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:26 GMT" + "Thu, 14 Dec 2017 10:09:01 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A26.7608008Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A01.6555975Z'\"" ], "x-ms-request-id": [ - "5cf5beba-9bcc-42f0-a41a-306ffc37d98f" + "b4c9bf07-29fa-43c3-b72d-7fdd8e9b680c" ], "request-id": [ - "5cf5beba-9bcc-42f0-a41a-306ffc37d98f" + "b4c9bf07-29fa-43c3-b72d-7fdd8e9b680c" ], "elapsed-time": [ - "2037" + "3215" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1160" + "1189" ], "x-ms-correlation-request-id": [ - "5df3c166-da3e-479c-9371-218230b20198" + "368fdf5a-68ac-494e-bc7c-c02dc689b140" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055626Z:5df3c166-da3e-479c-9371-218230b20198" + "CENTRALUS:20171214T100902Z:368fdf5a-68ac-494e-bc7c-c02dc689b140" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3474/providers/Microsoft.Search/searchServices/azs-8419?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNDc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04NDE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8547/providers/Microsoft.Search/searchServices/azs-4258?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MjU4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bfb6858-44cd-45d6-938f-5014d88deb61" + "dbc26c3a-7074-4f9c-b5a6-6c4fbb0acb97" ], "accept-language": [ "en-US" @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:28 GMT" + "Thu, 14 Dec 2017 10:09:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0bfb6858-44cd-45d6-938f-5014d88deb61" + "dbc26c3a-7074-4f9c-b5a6-6c4fbb0acb97" ], "request-id": [ - "0bfb6858-44cd-45d6-938f-5014d88deb61" + "dbc26c3a-7074-4f9c-b5a6-6c4fbb0acb97" ], "elapsed-time": [ - "741" + "664" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,13 +242,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1159" + "1188" ], "x-ms-correlation-request-id": [ - "b26da257-abfb-4325-83cf-9eefff98ed79" + "340eee7c-cc66-4969-be58-f1b021861971" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055628Z:b26da257-abfb-4325-83cf-9eefff98ed79" + "CENTRALUS:20171214T100903Z:340eee7c-cc66-4969-be58-f1b021861971" ] }, "StatusCode": 200 @@ -256,10 +256,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3474" + "azsmnet8547" ], "GenerateServiceName": [ - "azs-8419" + "azs-4258" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json index 3b99c30191201..0262054dc80d6 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard2Service.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c190ec8-b7b1-4653-9dc8-85b41eaa2761" + "5c91ff37-82bd-42ac-8259-b563e6a211cc" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:16:57 GMT" + "Thu, 14 Dec 2017 10:24:51 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1163" ], "x-ms-request-id": [ - "28f46a06-f157-4764-9c11-7478783d163b" + "7c898330-733e-463f-bffe-4234bd225e68" ], "x-ms-correlation-request-id": [ - "28f46a06-f157-4764-9c11-7478783d163b" + "7c898330-733e-463f-bffe-4234bd225e68" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191658Z:28f46a06-f157-4764-9c11-7478783d163b" + "CENTRALUS:20171214T102451Z:7c898330-733e-463f-bffe-4234bd225e68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6270?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MjcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet473?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NzM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "6782e4e3-0dc1-4363-9db9-477360fde762" + "2958a817-e5e5-4a86-8cd1-b5889ed04a14" ], "accept-language": [ "en-US" @@ -81,10 +81,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270\",\r\n \"name\": \"azsmnet6270\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473\",\r\n \"name\": \"azsmnet473\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:16:58 GMT" + "Thu, 14 Dec 2017 10:24:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1162" ], "x-ms-request-id": [ - "caff34c0-1ef1-48fb-8559-df3301082682" + "f770fde7-4b90-4ffb-b6be-9b72944de6e6" ], "x-ms-correlation-request-id": [ - "caff34c0-1ef1-48fb-8559-df3301082682" + "f770fde7-4b90-4ffb-b6be-9b72944de6e6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191658Z:caff34c0-1ef1-48fb-8559-df3301082682" + "CENTRALUS:20171214T102452Z:f770fde7-4b90-4ffb-b6be-9b72944de6e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"standard2\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "146" ], "x-ms-client-request-id": [ - "db187578-51b9-4e4e-a3ec-2470c86114c7" + "b3c5d9f8-a7ef-4dcb-8641-211dd259b042" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Length": [ - "398" + "397" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:17:25 GMT" + "Thu, 14 Dec 2017 10:25:25 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "x-ms-request-id": [ - "db187578-51b9-4e4e-a3ec-2470c86114c7" + "b3c5d9f8-a7ef-4dcb-8641-211dd259b042" ], "request-id": [ - "db187578-51b9-4e4e-a3ec-2470c86114c7" + "b3c5d9f8-a7ef-4dcb-8641-211dd259b042" ], "elapsed-time": [ - "26272" + "31437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,29 +181,4721 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1161" ], "x-ms-correlation-request-id": [ - "617ad025-d4a0-4d95-b258-683d87eac351" + "61f53d4f-340a-4bc2-baaa-6b0a3160e3f8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191725Z:617ad025-d4a0-4d95-b258-683d87eac351" + "CENTRALUS:20171214T102525Z:61f53d4f-340a-4bc2-baaa-6b0a3160e3f8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a03f94fb-ccd3-4a99-8a77-83138c912d0e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:25:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a03f94fb-ccd3-4a99-8a77-83138c912d0e" + ], + "request-id": [ + "a03f94fb-ccd3-4a99-8a77-83138c912d0e" + ], + "elapsed-time": [ + "59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "e83d26b9-db57-412a-98bb-6f8500f67889" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102535Z:e83d26b9-db57-412a-98bb-6f8500f67889" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "823909cd-3ce6-47fd-82eb-33756bdf3198" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:25:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "823909cd-3ce6-47fd-82eb-33756bdf3198" + ], + "request-id": [ + "823909cd-3ce6-47fd-82eb-33756bdf3198" + ], + "elapsed-time": [ + "83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "bc80112f-1500-460a-843e-5fcd76dfedbc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102545Z:bc80112f-1500-460a-843e-5fcd76dfedbc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33ce3ca7-fdd5-41a8-9d96-5b5f629c78a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:25:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "33ce3ca7-fdd5-41a8-9d96-5b5f629c78a7" + ], + "request-id": [ + "33ce3ca7-fdd5-41a8-9d96-5b5f629c78a7" + ], + "elapsed-time": [ + "3564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "ddbd52fe-9cc0-4616-8f1a-e13df971cb00" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102559Z:ddbd52fe-9cc0-4616-8f1a-e13df971cb00" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "207e5417-098b-47bd-8fe2-0ad300fa3caa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:26:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "207e5417-098b-47bd-8fe2-0ad300fa3caa" + ], + "request-id": [ + "207e5417-098b-47bd-8fe2-0ad300fa3caa" + ], + "elapsed-time": [ + "138" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "f78ddeb0-ee97-4fef-b3d2-dd5ffd9b3c35" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102612Z:f78ddeb0-ee97-4fef-b3d2-dd5ffd9b3c35" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5344b52a-faec-4311-b02f-05463525b712" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:26:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5344b52a-faec-4311-b02f-05463525b712" + ], + "request-id": [ + "5344b52a-faec-4311-b02f-05463525b712" + ], + "elapsed-time": [ + "61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "94772890-7943-4f1d-b34a-f8ddca06d31b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102622Z:94772890-7943-4f1d-b34a-f8ddca06d31b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41eebd12-d667-442f-922a-f82708c38aae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:26:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "41eebd12-d667-442f-922a-f82708c38aae" + ], + "request-id": [ + "41eebd12-d667-442f-922a-f82708c38aae" + ], + "elapsed-time": [ + "1945" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "f877b9e1-04b2-4e07-a9fc-3392c50df498" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102634Z:f877b9e1-04b2-4e07-a9fc-3392c50df498" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf9fd6dc-c760-4611-a9d8-d743d1d59cbc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:26:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cf9fd6dc-c760-4611-a9d8-d743d1d59cbc" + ], + "request-id": [ + "cf9fd6dc-c760-4611-a9d8-d743d1d59cbc" + ], + "elapsed-time": [ + "1559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "d510e027-053d-4488-aeb8-43c941c79a89" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102646Z:d510e027-053d-4488-aeb8-43c941c79a89" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fb22de6-1811-486c-975e-d0560288d2c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:26:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4fb22de6-1811-486c-975e-d0560288d2c8" + ], + "request-id": [ + "4fb22de6-1811-486c-975e-d0560288d2c8" + ], + "elapsed-time": [ + "3494" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "d26dac23-b680-4eda-bc31-4f92116d43a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102659Z:d26dac23-b680-4eda-bc31-4f92116d43a6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77c8236e-03c4-4c3e-8c6a-0ce6e57bd49f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:27:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "77c8236e-03c4-4c3e-8c6a-0ce6e57bd49f" + ], + "request-id": [ + "77c8236e-03c4-4c3e-8c6a-0ce6e57bd49f" + ], + "elapsed-time": [ + "92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14871" + ], + "x-ms-correlation-request-id": [ + "cae2239c-43ca-4773-a67e-9db88cf2b429" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102710Z:cae2239c-43ca-4773-a67e-9db88cf2b429" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de242533-9d57-41c4-9c56-50b9a85d7d22" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:27:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "de242533-9d57-41c4-9c56-50b9a85d7d22" + ], + "request-id": [ + "de242533-9d57-41c4-9c56-50b9a85d7d22" + ], + "elapsed-time": [ + "1918" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14870" + ], + "x-ms-correlation-request-id": [ + "0ade9086-0837-4674-a4ba-02914ac40703" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102722Z:0ade9086-0837-4674-a4ba-02914ac40703" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef34cd3b-b47b-49bb-b4b7-6fe05333c13b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:27:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ef34cd3b-b47b-49bb-b4b7-6fe05333c13b" + ], + "request-id": [ + "ef34cd3b-b47b-49bb-b4b7-6fe05333c13b" + ], + "elapsed-time": [ + "91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14869" + ], + "x-ms-correlation-request-id": [ + "8ae6bc12-3e7a-4cbb-970c-0f26e01a0fab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102732Z:8ae6bc12-3e7a-4cbb-970c-0f26e01a0fab" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b4350ff-1cf2-4228-afed-432a17407b97" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:27:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1b4350ff-1cf2-4228-afed-432a17407b97" + ], + "request-id": [ + "1b4350ff-1cf2-4228-afed-432a17407b97" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14868" + ], + "x-ms-correlation-request-id": [ + "93fc5f3c-b9a5-465a-b7d9-eadca6ca1a5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102742Z:93fc5f3c-b9a5-465a-b7d9-eadca6ca1a5f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72a9f426-e850-47e7-8fe9-997fb85c3ca4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:27:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "72a9f426-e850-47e7-8fe9-997fb85c3ca4" + ], + "request-id": [ + "72a9f426-e850-47e7-8fe9-997fb85c3ca4" + ], + "elapsed-time": [ + "238" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14867" + ], + "x-ms-correlation-request-id": [ + "3d1d496a-8137-4568-a9d9-735f7bad3ab0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102753Z:3d1d496a-8137-4568-a9d9-735f7bad3ab0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e71f8f9-3330-413b-9b3f-95ce0f0c6904" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:28:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2e71f8f9-3330-413b-9b3f-95ce0f0c6904" + ], + "request-id": [ + "2e71f8f9-3330-413b-9b3f-95ce0f0c6904" + ], + "elapsed-time": [ + "56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14866" + ], + "x-ms-correlation-request-id": [ + "ba282003-cf95-4533-b636-18f4bcb740d7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102803Z:ba282003-cf95-4533-b636-18f4bcb740d7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68e48772-6ec4-4287-99e4-0433f8fec59d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:28:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "68e48772-6ec4-4287-99e4-0433f8fec59d" + ], + "request-id": [ + "68e48772-6ec4-4287-99e4-0433f8fec59d" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14865" + ], + "x-ms-correlation-request-id": [ + "5cb90c3c-cc81-4b86-a067-71cd02fd5105" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102813Z:5cb90c3c-cc81-4b86-a067-71cd02fd5105" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d349e43-5ddd-4c66-8857-2c43ff4d441f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:28:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7d349e43-5ddd-4c66-8857-2c43ff4d441f" + ], + "request-id": [ + "7d349e43-5ddd-4c66-8857-2c43ff4d441f" + ], + "elapsed-time": [ + "56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14864" + ], + "x-ms-correlation-request-id": [ + "78fb488f-4f74-48ff-b17b-3991719d9c93" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102823Z:78fb488f-4f74-48ff-b17b-3991719d9c93" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a978849b-2d6d-4ab2-a89a-21334f7ff292" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:28:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a978849b-2d6d-4ab2-a89a-21334f7ff292" + ], + "request-id": [ + "a978849b-2d6d-4ab2-a89a-21334f7ff292" + ], + "elapsed-time": [ + "2441" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14863" + ], + "x-ms-correlation-request-id": [ + "9c2f8cef-ada0-4999-be59-cafb02471eb9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102836Z:9c2f8cef-ada0-4999-be59-cafb02471eb9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "121ea656-8a69-4c5b-ae28-73be576269fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:28:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "121ea656-8a69-4c5b-ae28-73be576269fa" + ], + "request-id": [ + "121ea656-8a69-4c5b-ae28-73be576269fa" + ], + "elapsed-time": [ + "55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14862" + ], + "x-ms-correlation-request-id": [ + "3aec5e14-3e60-47a3-9f6c-ea47ba882364" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102846Z:3aec5e14-3e60-47a3-9f6c-ea47ba882364" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c72ed21-a78c-429f-838b-b3db3bb1b02f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:28:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1c72ed21-a78c-429f-838b-b3db3bb1b02f" + ], + "request-id": [ + "1c72ed21-a78c-429f-838b-b3db3bb1b02f" + ], + "elapsed-time": [ + "321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14861" + ], + "x-ms-correlation-request-id": [ + "999a76af-8d39-4b4a-a37c-aa2f91d20459" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102856Z:999a76af-8d39-4b4a-a37c-aa2f91d20459" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ab02f5e-4b4b-4834-8dcb-e942e5143443" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:29:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0ab02f5e-4b4b-4834-8dcb-e942e5143443" + ], + "request-id": [ + "0ab02f5e-4b4b-4834-8dcb-e942e5143443" + ], + "elapsed-time": [ + "59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14860" + ], + "x-ms-correlation-request-id": [ + "5aed8cf1-0d0e-45cb-892c-7701ecfc9955" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102907Z:5aed8cf1-0d0e-45cb-892c-7701ecfc9955" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aab39bd0-8a1a-49c7-800b-22a4b744731f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:29:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "aab39bd0-8a1a-49c7-800b-22a4b744731f" + ], + "request-id": [ + "aab39bd0-8a1a-49c7-800b-22a4b744731f" + ], + "elapsed-time": [ + "87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14859" + ], + "x-ms-correlation-request-id": [ + "5ac01fee-7b51-4e05-9d01-0cb06e3f2e26" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102917Z:5ac01fee-7b51-4e05-9d01-0cb06e3f2e26" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e684f25c-75cd-48ff-8f72-b28d5415ffb8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:29:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e684f25c-75cd-48ff-8f72-b28d5415ffb8" + ], + "request-id": [ + "e684f25c-75cd-48ff-8f72-b28d5415ffb8" + ], + "elapsed-time": [ + "165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14858" + ], + "x-ms-correlation-request-id": [ + "e1fad369-1d27-48f7-8bef-0f9468b8a09e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102927Z:e1fad369-1d27-48f7-8bef-0f9468b8a09e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e6204a4-da78-499e-bb07-e37971641198" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:29:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9e6204a4-da78-499e-bb07-e37971641198" + ], + "request-id": [ + "9e6204a4-da78-499e-bb07-e37971641198" + ], + "elapsed-time": [ + "49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14857" + ], + "x-ms-correlation-request-id": [ + "39b0f6c0-309d-42b4-be89-e68c782c4551" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102937Z:39b0f6c0-309d-42b4-be89-e68c782c4551" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61ddc4df-b061-4679-9fd2-8e65b33880fc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:29:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "61ddc4df-b061-4679-9fd2-8e65b33880fc" + ], + "request-id": [ + "61ddc4df-b061-4679-9fd2-8e65b33880fc" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14856" + ], + "x-ms-correlation-request-id": [ + "3ef2cdd1-ee48-4156-8a91-62067f3660d3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102947Z:3ef2cdd1-ee48-4156-8a91-62067f3660d3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "948addb8-0832-4c18-818c-8c3e1c9d6468" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:29:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "948addb8-0832-4c18-818c-8c3e1c9d6468" + ], + "request-id": [ + "948addb8-0832-4c18-818c-8c3e1c9d6468" + ], + "elapsed-time": [ + "1240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14855" + ], + "x-ms-correlation-request-id": [ + "bbe7e62f-6a69-41d7-9995-34827532f989" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102959Z:bbe7e62f-6a69-41d7-9995-34827532f989" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ace09f18-017e-4095-99f3-79cbc379358d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:30:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ace09f18-017e-4095-99f3-79cbc379358d" + ], + "request-id": [ + "ace09f18-017e-4095-99f3-79cbc379358d" + ], + "elapsed-time": [ + "53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14854" + ], + "x-ms-correlation-request-id": [ + "33265d77-3360-43c6-aeca-5c2dcd2c26d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103009Z:33265d77-3360-43c6-aeca-5c2dcd2c26d2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f1cea50-73c0-4f98-8ad5-e640e89630e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:30:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1f1cea50-73c0-4f98-8ad5-e640e89630e7" + ], + "request-id": [ + "1f1cea50-73c0-4f98-8ad5-e640e89630e7" + ], + "elapsed-time": [ + "56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14853" + ], + "x-ms-correlation-request-id": [ + "36283edb-dffd-4077-9dd6-be5a1b79796e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103019Z:36283edb-dffd-4077-9dd6-be5a1b79796e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29248348-72b6-4f21-ad58-3f1a33167844" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:30:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "29248348-72b6-4f21-ad58-3f1a33167844" + ], + "request-id": [ + "29248348-72b6-4f21-ad58-3f1a33167844" + ], + "elapsed-time": [ + "53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14852" + ], + "x-ms-correlation-request-id": [ + "f8102e7b-7c30-43ad-84a2-7d534c17f56a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103029Z:f8102e7b-7c30-43ad-84a2-7d534c17f56a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7dfb49a1-2be8-4fbd-8dcc-cb6bbace0ad4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:30:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7dfb49a1-2be8-4fbd-8dcc-cb6bbace0ad4" + ], + "request-id": [ + "7dfb49a1-2be8-4fbd-8dcc-cb6bbace0ad4" + ], + "elapsed-time": [ + "47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14851" + ], + "x-ms-correlation-request-id": [ + "76377942-2b99-48ca-b283-5f93fb58bde4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103039Z:76377942-2b99-48ca-b283-5f93fb58bde4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c42b51b-2078-4979-bf90-543ae74da35e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:30:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c42b51b-2078-4979-bf90-543ae74da35e" + ], + "request-id": [ + "6c42b51b-2078-4979-bf90-543ae74da35e" + ], + "elapsed-time": [ + "893" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14850" + ], + "x-ms-correlation-request-id": [ + "e00d47ab-c7cd-47d0-ae50-74f3ca567bd1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103051Z:e00d47ab-c7cd-47d0-ae50-74f3ca567bd1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48c2625b-d83f-41d5-ab35-664342ea04a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:31:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "48c2625b-d83f-41d5-ab35-664342ea04a9" + ], + "request-id": [ + "48c2625b-d83f-41d5-ab35-664342ea04a9" + ], + "elapsed-time": [ + "56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14849" + ], + "x-ms-correlation-request-id": [ + "45329633-bfb2-433a-b707-23c9ca05ea5d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103101Z:45329633-bfb2-433a-b707-23c9ca05ea5d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfb89132-d03e-4e70-84e6-55ad94a6f27a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:31:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dfb89132-d03e-4e70-84e6-55ad94a6f27a" + ], + "request-id": [ + "dfb89132-d03e-4e70-84e6-55ad94a6f27a" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14848" + ], + "x-ms-correlation-request-id": [ + "7f6d3db3-5c47-4403-b23d-1291ae83e330" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103111Z:7f6d3db3-5c47-4403-b23d-1291ae83e330" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96406418-970b-4b7f-8243-206d53bc699a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:31:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "96406418-970b-4b7f-8243-206d53bc699a" + ], + "request-id": [ + "96406418-970b-4b7f-8243-206d53bc699a" + ], + "elapsed-time": [ + "87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14847" + ], + "x-ms-correlation-request-id": [ + "3034fd8d-0a5d-4ec2-882e-2366c6700bf5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103121Z:3034fd8d-0a5d-4ec2-882e-2366c6700bf5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f3725dd-5887-463d-a3db-5bdd96747cd3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:31:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7f3725dd-5887-463d-a3db-5bdd96747cd3" + ], + "request-id": [ + "7f3725dd-5887-463d-a3db-5bdd96747cd3" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14846" + ], + "x-ms-correlation-request-id": [ + "1af9c26f-79b8-4802-95e5-086c82cc68b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103132Z:1af9c26f-79b8-4802-95e5-086c82cc68b0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29c90a28-709b-423a-9568-68f5862ff218" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:31:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "29c90a28-709b-423a-9568-68f5862ff218" + ], + "request-id": [ + "29c90a28-709b-423a-9568-68f5862ff218" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14845" + ], + "x-ms-correlation-request-id": [ + "aecda3a1-3106-4161-b607-94d5a1a790bb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103142Z:aecda3a1-3106-4161-b607-94d5a1a790bb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7db4e03c-bf34-4aa0-bb13-7c0128a7195b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:31:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7db4e03c-bf34-4aa0-bb13-7c0128a7195b" + ], + "request-id": [ + "7db4e03c-bf34-4aa0-bb13-7c0128a7195b" + ], + "elapsed-time": [ + "245" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14844" + ], + "x-ms-correlation-request-id": [ + "c45cf1da-ae07-4340-95e5-36f2a386137f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103152Z:c45cf1da-ae07-4340-95e5-36f2a386137f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7ebb738-5e34-4351-869b-6a6430832494" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:32:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d7ebb738-5e34-4351-869b-6a6430832494" + ], + "request-id": [ + "d7ebb738-5e34-4351-869b-6a6430832494" + ], + "elapsed-time": [ + "50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14843" + ], + "x-ms-correlation-request-id": [ + "ce5da7e3-37b5-408e-b626-436b3df80043" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103202Z:ce5da7e3-37b5-408e-b626-436b3df80043" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce02644c-0ddc-43a3-a6f4-6a15a295766c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:32:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ce02644c-0ddc-43a3-a6f4-6a15a295766c" + ], + "request-id": [ + "ce02644c-0ddc-43a3-a6f4-6a15a295766c" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14842" + ], + "x-ms-correlation-request-id": [ + "350e6f09-f02a-4f94-8f9a-3272fc2cf361" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103212Z:350e6f09-f02a-4f94-8f9a-3272fc2cf361" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c0d71a8-cc77-4878-838e-19aa45d8b603" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:32:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3c0d71a8-cc77-4878-838e-19aa45d8b603" + ], + "request-id": [ + "3c0d71a8-cc77-4878-838e-19aa45d8b603" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14841" + ], + "x-ms-correlation-request-id": [ + "3b5fc4f5-e8c7-4d79-8cc0-3e092eaff201" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103223Z:3b5fc4f5-e8c7-4d79-8cc0-3e092eaff201" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05b1acd3-c3f6-4be2-8cb9-40938e5374ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:32:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "05b1acd3-c3f6-4be2-8cb9-40938e5374ac" + ], + "request-id": [ + "05b1acd3-c3f6-4be2-8cb9-40938e5374ac" + ], + "elapsed-time": [ + "75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14840" + ], + "x-ms-correlation-request-id": [ + "e82b4ece-aa6b-4e06-a6de-dd3f0b77d5d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103233Z:e82b4ece-aa6b-4e06-a6de-dd3f0b77d5d1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a4aeea8-a376-4040-b8bc-89d8f54d1391" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:32:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1a4aeea8-a376-4040-b8bc-89d8f54d1391" + ], + "request-id": [ + "1a4aeea8-a376-4040-b8bc-89d8f54d1391" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14839" + ], + "x-ms-correlation-request-id": [ + "aac32776-4a20-448b-9141-408c6453375c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103243Z:aac32776-4a20-448b-9141-408c6453375c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9ea9b82-e6e9-4402-a32c-d9e7f62da1a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:32:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d9ea9b82-e6e9-4402-a32c-d9e7f62da1a5" + ], + "request-id": [ + "d9ea9b82-e6e9-4402-a32c-d9e7f62da1a5" + ], + "elapsed-time": [ + "170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14838" + ], + "x-ms-correlation-request-id": [ + "8e737be4-d14b-4206-9e2f-6b1c27b96b65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103253Z:8e737be4-d14b-4206-9e2f-6b1c27b96b65" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a80a47c-4b4a-4e08-8cfe-c10e98c60283" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:33:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4a80a47c-4b4a-4e08-8cfe-c10e98c60283" + ], + "request-id": [ + "4a80a47c-4b4a-4e08-8cfe-c10e98c60283" + ], + "elapsed-time": [ + "61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14837" + ], + "x-ms-correlation-request-id": [ + "196d942b-011a-455f-b930-6afac5dc566b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103303Z:196d942b-011a-455f-b930-6afac5dc566b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12171955-71da-42fa-9e96-8137aedffd1d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:33:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "12171955-71da-42fa-9e96-8137aedffd1d" + ], + "request-id": [ + "12171955-71da-42fa-9e96-8137aedffd1d" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14836" + ], + "x-ms-correlation-request-id": [ + "2c6dabf8-684e-4bcb-8b88-5f5b578cc193" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103314Z:2c6dabf8-684e-4bcb-8b88-5f5b578cc193" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "984edca9-2de8-4f71-a134-7d395e3854a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:33:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "984edca9-2de8-4f71-a134-7d395e3854a9" + ], + "request-id": [ + "984edca9-2de8-4f71-a134-7d395e3854a9" + ], + "elapsed-time": [ + "55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14835" + ], + "x-ms-correlation-request-id": [ + "b725e7fc-8e63-4009-87bd-3e4e83724c15" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103324Z:b725e7fc-8e63-4009-87bd-3e4e83724c15" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44ff2045-3bb4-4f19-ae3b-6ee693b1a123" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:33:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "44ff2045-3bb4-4f19-ae3b-6ee693b1a123" + ], + "request-id": [ + "44ff2045-3bb4-4f19-ae3b-6ee693b1a123" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14834" + ], + "x-ms-correlation-request-id": [ + "e257f26a-5b45-4e92-a28e-51a9b75eb2b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103334Z:e257f26a-5b45-4e92-a28e-51a9b75eb2b5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41387b53-cace-4c0e-af6f-ddebf0ecf71d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:33:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "41387b53-cace-4c0e-af6f-ddebf0ecf71d" + ], + "request-id": [ + "41387b53-cace-4c0e-af6f-ddebf0ecf71d" + ], + "elapsed-time": [ + "1096" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-correlation-request-id": [ + "9375756c-c244-49e9-8f61-c1acb5db6e92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103345Z:9375756c-c244-49e9-8f61-c1acb5db6e92" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e781cab9-3a2a-4163-883d-533ba189c770" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:33:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e781cab9-3a2a-4163-883d-533ba189c770" + ], + "request-id": [ + "e781cab9-3a2a-4163-883d-533ba189c770" + ], + "elapsed-time": [ + "392" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14832" + ], + "x-ms-correlation-request-id": [ + "90469f50-4313-4c30-8739-702a87fc6eaa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103356Z:90469f50-4313-4c30-8739-702a87fc6eaa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "505e92e6-e1ac-4d2e-a453-1aa0c455f360" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:34:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "505e92e6-e1ac-4d2e-a453-1aa0c455f360" + ], + "request-id": [ + "505e92e6-e1ac-4d2e-a453-1aa0c455f360" + ], + "elapsed-time": [ + "197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14831" + ], + "x-ms-correlation-request-id": [ + "261bb3ca-7d80-4fd5-b730-cc5866e78169" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103406Z:261bb3ca-7d80-4fd5-b730-cc5866e78169" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a273bff-b85e-48fa-8cc7-768c72659f7c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:34:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4a273bff-b85e-48fa-8cc7-768c72659f7c" + ], + "request-id": [ + "4a273bff-b85e-48fa-8cc7-768c72659f7c" + ], + "elapsed-time": [ + "2510" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14830" + ], + "x-ms-correlation-request-id": [ + "18d02f9c-190f-4c9c-9980-6d6835269170" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103419Z:18d02f9c-190f-4c9c-9980-6d6835269170" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a9473f2-4639-4e78-a4dd-8e0ffca04320" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:34:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8a9473f2-4639-4e78-a4dd-8e0ffca04320" + ], + "request-id": [ + "8a9473f2-4639-4e78-a4dd-8e0ffca04320" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14829" + ], + "x-ms-correlation-request-id": [ + "469d7d7f-932c-4efa-8cb8-404378f806f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103429Z:469d7d7f-932c-4efa-8cb8-404378f806f0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2930b891-8314-4a15-96d6-7fe50ee695af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:34:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2930b891-8314-4a15-96d6-7fe50ee695af" + ], + "request-id": [ + "2930b891-8314-4a15-96d6-7fe50ee695af" + ], + "elapsed-time": [ + "83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14828" + ], + "x-ms-correlation-request-id": [ + "aeaa011f-7e9c-4b7f-acea-62930e341d11" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103439Z:aeaa011f-7e9c-4b7f-acea-62930e341d11" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35309295-f753-4563-97b1-eb2bbd217745" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:34:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "35309295-f753-4563-97b1-eb2bbd217745" + ], + "request-id": [ + "35309295-f753-4563-97b1-eb2bbd217745" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14827" + ], + "x-ms-correlation-request-id": [ + "460e6ede-0834-4208-a2a0-5ef10b11a13b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103449Z:460e6ede-0834-4208-a2a0-5ef10b11a13b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15ece7cd-b13e-4a8a-829a-57285e4036f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:34:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "15ece7cd-b13e-4a8a-829a-57285e4036f9" + ], + "request-id": [ + "15ece7cd-b13e-4a8a-829a-57285e4036f9" + ], + "elapsed-time": [ + "85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14826" + ], + "x-ms-correlation-request-id": [ + "fa2b3d78-ce39-4b80-a5b7-f281d2838a45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103500Z:fa2b3d78-ce39-4b80-a5b7-f281d2838a45" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3abfd12-0018-42cc-9daa-44f38fdba5a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:35:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e3abfd12-0018-42cc-9daa-44f38fdba5a4" + ], + "request-id": [ + "e3abfd12-0018-42cc-9daa-44f38fdba5a4" + ], + "elapsed-time": [ + "112" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14825" + ], + "x-ms-correlation-request-id": [ + "5eb502d2-7873-4149-8199-1d2374d978ee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103510Z:5eb502d2-7873-4149-8199-1d2374d978ee" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98cbd4b3-46c7-46cb-8c6b-7057de658c5c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:35:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "98cbd4b3-46c7-46cb-8c6b-7057de658c5c" + ], + "request-id": [ + "98cbd4b3-46c7-46cb-8c6b-7057de658c5c" + ], + "elapsed-time": [ + "66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14824" + ], + "x-ms-correlation-request-id": [ + "5d590048-8140-4ad3-a3f2-c9e0fe749da9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103520Z:5d590048-8140-4ad3-a3f2-c9e0fe749da9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c83ade02-a099-406a-a569-fe2f3082d4f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:35:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c83ade02-a099-406a-a569-fe2f3082d4f1" + ], + "request-id": [ + "c83ade02-a099-406a-a569-fe2f3082d4f1" + ], + "elapsed-time": [ + "77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14823" + ], + "x-ms-correlation-request-id": [ + "2aa76e00-454a-4946-bd82-3738afe2f348" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103530Z:2aa76e00-454a-4946-bd82-3738afe2f348" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "975dd8e6-667f-4095-9799-0dd5b045cd0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:35:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "975dd8e6-667f-4095-9799-0dd5b045cd0c" + ], + "request-id": [ + "975dd8e6-667f-4095-9799-0dd5b045cd0c" + ], + "elapsed-time": [ + "4257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14822" + ], + "x-ms-correlation-request-id": [ + "99256546-8def-4612-905f-300d354607f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103545Z:99256546-8def-4612-905f-300d354607f9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea9fa7f-ee4a-4a9b-8ec0-bdca861f55af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:35:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5ea9fa7f-ee4a-4a9b-8ec0-bdca861f55af" + ], + "request-id": [ + "5ea9fa7f-ee4a-4a9b-8ec0-bdca861f55af" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14821" + ], + "x-ms-correlation-request-id": [ + "fc6a180c-a05b-46df-ac04-eacee6fa2cc5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103555Z:fc6a180c-a05b-46df-ac04-eacee6fa2cc5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66c15bbf-a02d-45dc-b6bb-28e95eec3927" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:36:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "66c15bbf-a02d-45dc-b6bb-28e95eec3927" + ], + "request-id": [ + "66c15bbf-a02d-45dc-b6bb-28e95eec3927" + ], + "elapsed-time": [ + "58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14820" + ], + "x-ms-correlation-request-id": [ + "aba28bc8-06c9-45b9-9dec-33871e9787ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103605Z:aba28bc8-06c9-45b9-9dec-33871e9787ca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59a4b759-7208-4817-9a65-2758609505a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:36:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "59a4b759-7208-4817-9a65-2758609505a8" + ], + "request-id": [ + "59a4b759-7208-4817-9a65-2758609505a8" + ], + "elapsed-time": [ + "68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14819" + ], + "x-ms-correlation-request-id": [ + "a42f4caf-09db-491b-9af1-bdd34186a2de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103615Z:a42f4caf-09db-491b-9af1-bdd34186a2de" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe2040a3-d724-458f-ac5b-a128636d703e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:36:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fe2040a3-d724-458f-ac5b-a128636d703e" + ], + "request-id": [ + "fe2040a3-d724-458f-ac5b-a128636d703e" + ], + "elapsed-time": [ + "156" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14818" + ], + "x-ms-correlation-request-id": [ + "a4a219b5-46e2-4592-a069-f6602a957132" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103626Z:a4a219b5-46e2-4592-a069-f6602a957132" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ca9960f-0610-4ba3-a8f2-df8635137d9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:36:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0ca9960f-0610-4ba3-a8f2-df8635137d9d" + ], + "request-id": [ + "0ca9960f-0610-4ba3-a8f2-df8635137d9d" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14817" + ], + "x-ms-correlation-request-id": [ + "179ea886-cbcf-4abb-a0a2-f48f94f1e3c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103636Z:179ea886-cbcf-4abb-a0a2-f48f94f1e3c9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2416737-ffa8-45e8-9470-c423eb579edf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:36:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a2416737-ffa8-45e8-9470-c423eb579edf" + ], + "request-id": [ + "a2416737-ffa8-45e8-9470-c423eb579edf" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14816" + ], + "x-ms-correlation-request-id": [ + "a7cd4098-3d86-49f5-aadc-0a5635eb1715" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103646Z:a7cd4098-3d86-49f5-aadc-0a5635eb1715" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88681fc8-3a97-4ea5-81e1-50c8aae7046c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:36:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "88681fc8-3a97-4ea5-81e1-50c8aae7046c" + ], + "request-id": [ + "88681fc8-3a97-4ea5-81e1-50c8aae7046c" + ], + "elapsed-time": [ + "172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14815" + ], + "x-ms-correlation-request-id": [ + "77cd820c-2bb3-4cf0-9c5a-939fd5149ed7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103656Z:77cd820c-2bb3-4cf0-9c5a-939fd5149ed7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfd10c0b-835a-4a07-8fff-dc3847d206db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:37:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bfd10c0b-835a-4a07-8fff-dc3847d206db" + ], + "request-id": [ + "bfd10c0b-835a-4a07-8fff-dc3847d206db" + ], + "elapsed-time": [ + "420" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14814" + ], + "x-ms-correlation-request-id": [ + "4e26a2eb-8810-4cdd-8fa6-13680f1c8aee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103707Z:4e26a2eb-8810-4cdd-8fa6-13680f1c8aee" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ffeb167-7e61-4956-9d9f-897947596c62" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -215,7 +4907,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:17:56 GMT" + "Thu, 14 Dec 2017 10:37:17 GMT" ], "Pragma": [ "no-cache" @@ -224,20 +4916,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "19400914-5502-49cd-a281-1b7d19ee9bf0" + "2ffeb167-7e61-4956-9d9f-897947596c62" ], "request-id": [ - "19400914-5502-49cd-a281-1b7d19ee9bf0" + "2ffeb167-7e61-4956-9d9f-897947596c62" ], "elapsed-time": [ - "80" + "61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,29 +4938,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14813" ], "x-ms-correlation-request-id": [ - "835b11e9-9ebe-47a7-be7b-bb6929e993a7" + "8abc360d-20f4-4026-bf4b-419782f00d3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191756Z:835b11e9-9ebe-47a7-be7b-bb6929e993a7" + "CENTRALUS:20171214T103717Z:8abc360d-20f4-4026-bf4b-419782f00d3e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a72e1d3e-a7da-451c-b65b-7932bde1636d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -280,7 +4978,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:18:25 GMT" + "Thu, 14 Dec 2017 10:37:27 GMT" ], "Pragma": [ "no-cache" @@ -289,20 +4987,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1cb12edc-8944-4556-a37b-cbfe56ec3d0f" + "a72e1d3e-a7da-451c-b65b-7932bde1636d" ], "request-id": [ - "1cb12edc-8944-4556-a37b-cbfe56ec3d0f" + "a72e1d3e-a7da-451c-b65b-7932bde1636d" ], "elapsed-time": [ - "111" + "54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,29 +5009,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14812" ], "x-ms-correlation-request-id": [ - "76af737c-bc00-45f2-a0ed-02e5d0ce43e3" + "ac980ae7-2222-409d-a155-2a6071697509" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191826Z:76af737c-bc00-45f2-a0ed-02e5d0ce43e3" + "CENTRALUS:20171214T103727Z:ac980ae7-2222-409d-a155-2a6071697509" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f4e97c05-9599-4de8-95b9-cd9d2e614e51" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -345,7 +5049,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:18:56 GMT" + "Thu, 14 Dec 2017 10:37:37 GMT" ], "Pragma": [ "no-cache" @@ -354,20 +5058,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "95aac82c-fb27-455c-b9a1-0506ea776947" + "f4e97c05-9599-4de8-95b9-cd9d2e614e51" ], "request-id": [ - "95aac82c-fb27-455c-b9a1-0506ea776947" + "f4e97c05-9599-4de8-95b9-cd9d2e614e51" ], "elapsed-time": [ - "65" + "98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,29 +5080,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14811" ], "x-ms-correlation-request-id": [ - "dc0909cd-9f94-453f-b72e-f7335c9bcd3f" + "e9a883b5-ed25-42fa-a374-adca752cb17e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191856Z:dc0909cd-9f94-453f-b72e-f7335c9bcd3f" + "CENTRALUS:20171214T103737Z:e9a883b5-ed25-42fa-a374-adca752cb17e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "80a4c73a-9c39-4297-8df5-335318711862" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +5120,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:19:25 GMT" + "Thu, 14 Dec 2017 10:37:47 GMT" ], "Pragma": [ "no-cache" @@ -419,20 +5129,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3349c841-f3d6-40d6-8a00-349e08b24181" + "80a4c73a-9c39-4297-8df5-335318711862" ], "request-id": [ - "3349c841-f3d6-40d6-8a00-349e08b24181" + "80a4c73a-9c39-4297-8df5-335318711862" ], "elapsed-time": [ - "69" + "86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,29 +5151,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14810" ], "x-ms-correlation-request-id": [ - "3c728cdb-9abf-4221-b937-5c8315d7381d" + "42f198f0-9600-400c-a55b-8a4783d59d90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191926Z:3c728cdb-9abf-4221-b937-5c8315d7381d" + "CENTRALUS:20171214T103747Z:42f198f0-9600-400c-a55b-8a4783d59d90" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f3e377e6-dff2-45a4-a208-de3f66e0328b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -475,7 +5191,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:19:56 GMT" + "Thu, 14 Dec 2017 10:37:57 GMT" ], "Pragma": [ "no-cache" @@ -484,20 +5200,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a6cfe178-55bf-4c96-ab58-5a05395f0d14" + "f3e377e6-dff2-45a4-a208-de3f66e0328b" ], "request-id": [ - "a6cfe178-55bf-4c96-ab58-5a05395f0d14" + "f3e377e6-dff2-45a4-a208-de3f66e0328b" ], "elapsed-time": [ - "109" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -506,29 +5222,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14809" ], "x-ms-correlation-request-id": [ - "8e8716a9-08ee-4119-8497-b197a7371714" + "bf693eb6-bccb-4dc1-94eb-792b871b36b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191956Z:8e8716a9-08ee-4119-8497-b197a7371714" + "CENTRALUS:20171214T103758Z:bf693eb6-bccb-4dc1-94eb-792b871b36b7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ceba3ac5-797f-4bfc-b715-415b1e08029c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -540,7 +5262,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:20:26 GMT" + "Thu, 14 Dec 2017 10:38:07 GMT" ], "Pragma": [ "no-cache" @@ -549,20 +5271,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c5c67844-cc45-40db-bf6b-8a7ee2112dd2" + "ceba3ac5-797f-4bfc-b715-415b1e08029c" ], "request-id": [ - "c5c67844-cc45-40db-bf6b-8a7ee2112dd2" + "ceba3ac5-797f-4bfc-b715-415b1e08029c" ], "elapsed-time": [ - "67" + "166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -571,29 +5293,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14808" ], "x-ms-correlation-request-id": [ - "bcfe168c-3a03-44ff-903a-71c03c76383a" + "8d99039a-6d81-4ace-8c8d-37cd5bc0b604" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192027Z:bcfe168c-3a03-44ff-903a-71c03c76383a" + "CENTRALUS:20171214T103808Z:8d99039a-6d81-4ace-8c8d-37cd5bc0b604" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7497e6ff-0e94-4060-8e0d-35c051f6b8e3" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -605,7 +5333,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:20:56 GMT" + "Thu, 14 Dec 2017 10:38:18 GMT" ], "Pragma": [ "no-cache" @@ -614,20 +5342,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "13e3a9d8-bede-4f30-a09d-b7992359acdd" + "7497e6ff-0e94-4060-8e0d-35c051f6b8e3" ], "request-id": [ - "13e3a9d8-bede-4f30-a09d-b7992359acdd" + "7497e6ff-0e94-4060-8e0d-35c051f6b8e3" ], "elapsed-time": [ - "75" + "52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,29 +5364,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14807" ], "x-ms-correlation-request-id": [ - "0976531c-92fe-4b12-8339-332f1e317fb7" + "7742452b-d8d8-42fa-be8e-f3f671420008" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192057Z:0976531c-92fe-4b12-8339-332f1e317fb7" + "CENTRALUS:20171214T103818Z:7742452b-d8d8-42fa-be8e-f3f671420008" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "23f40584-4d90-408a-b4d1-b539f793c26c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -670,7 +5404,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:21:26 GMT" + "Thu, 14 Dec 2017 10:38:28 GMT" ], "Pragma": [ "no-cache" @@ -679,20 +5413,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2314b21b-a609-4dd5-b4ad-fe46f1340cf2" + "23f40584-4d90-408a-b4d1-b539f793c26c" ], "request-id": [ - "2314b21b-a609-4dd5-b4ad-fe46f1340cf2" + "23f40584-4d90-408a-b4d1-b539f793c26c" ], "elapsed-time": [ - "73" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -701,29 +5435,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14806" ], "x-ms-correlation-request-id": [ - "3eb61417-de0e-4eac-9f6b-81bf97548fa1" + "b7fb74ff-b622-43d5-b33b-abc822716f36" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192127Z:3eb61417-de0e-4eac-9f6b-81bf97548fa1" + "CENTRALUS:20171214T103828Z:b7fb74ff-b622-43d5-b33b-abc822716f36" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "004929f0-18bf-4283-91ec-8e4dbbd84d4f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -735,7 +5475,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:21:57 GMT" + "Thu, 14 Dec 2017 10:38:39 GMT" ], "Pragma": [ "no-cache" @@ -744,20 +5484,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "87971226-e820-4cfb-8c73-3c65abd4ce01" + "004929f0-18bf-4283-91ec-8e4dbbd84d4f" ], "request-id": [ - "87971226-e820-4cfb-8c73-3c65abd4ce01" + "004929f0-18bf-4283-91ec-8e4dbbd84d4f" ], "elapsed-time": [ - "169" + "64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,29 +5506,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14805" ], "x-ms-correlation-request-id": [ - "e0f61535-4417-4c65-919e-9bfa16a4297c" + "a47041fb-1095-402c-92e1-927a8fc46bbd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192157Z:e0f61535-4417-4c65-919e-9bfa16a4297c" + "CENTRALUS:20171214T103839Z:a47041fb-1095-402c-92e1-927a8fc46bbd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a8202820-817e-4846-a3a3-7a47d5add6dd" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -800,7 +5546,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:22:28 GMT" + "Thu, 14 Dec 2017 10:38:48 GMT" ], "Pragma": [ "no-cache" @@ -809,20 +5555,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8294aeb3-a123-4fa3-91bf-1f7511df52ce" + "a8202820-817e-4846-a3a3-7a47d5add6dd" ], "request-id": [ - "8294aeb3-a123-4fa3-91bf-1f7511df52ce" + "a8202820-817e-4846-a3a3-7a47d5add6dd" ], "elapsed-time": [ - "115" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,29 +5577,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14804" ], "x-ms-correlation-request-id": [ - "535059f8-df5f-4fd1-a542-b1daf73272dc" + "80e34af1-226c-4950-a79e-4a04d177d97e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192228Z:535059f8-df5f-4fd1-a542-b1daf73272dc" + "CENTRALUS:20171214T103849Z:80e34af1-226c-4950-a79e-4a04d177d97e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "19347f70-56ab-4355-bb52-aec4d9810c37" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -865,7 +5617,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:22:58 GMT" + "Thu, 14 Dec 2017 10:38:58 GMT" ], "Pragma": [ "no-cache" @@ -874,20 +5626,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9c96d23c-74c5-4e2e-993e-03557bb8628c" + "19347f70-56ab-4355-bb52-aec4d9810c37" ], "request-id": [ - "9c96d23c-74c5-4e2e-993e-03557bb8628c" + "19347f70-56ab-4355-bb52-aec4d9810c37" ], "elapsed-time": [ - "76" + "58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,29 +5648,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14803" ], "x-ms-correlation-request-id": [ - "a9558a80-9e5e-4294-92d1-8c1f4d2fe82a" + "ffb0b69f-fdfc-451f-8458-f8c6ccd3d26d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192258Z:a9558a80-9e5e-4294-92d1-8c1f4d2fe82a" + "CENTRALUS:20171214T103859Z:ffb0b69f-fdfc-451f-8458-f8c6ccd3d26d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "22b2953e-62e5-4243-a878-4716a5f14884" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -930,7 +5688,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:23:28 GMT" + "Thu, 14 Dec 2017 10:39:10 GMT" ], "Pragma": [ "no-cache" @@ -939,20 +5697,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "0996d64a-3ce2-4230-a612-d7767e99aa79" + "22b2953e-62e5-4243-a878-4716a5f14884" ], "request-id": [ - "0996d64a-3ce2-4230-a612-d7767e99aa79" + "22b2953e-62e5-4243-a878-4716a5f14884" ], "elapsed-time": [ - "68" + "935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -961,29 +5719,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14802" ], "x-ms-correlation-request-id": [ - "d1e7d6d6-0c46-43fa-b44c-8a6a5a6bbfc6" + "8a070592-2abe-49cc-8005-a61eab2d40c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192328Z:d1e7d6d6-0c46-43fa-b44c-8a6a5a6bbfc6" + "CENTRALUS:20171214T103910Z:8a070592-2abe-49cc-8005-a61eab2d40c3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6f0e24e-4c1d-4daa-8ee2-8dbf8cd92bbd" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -995,7 +5759,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:24:02 GMT" + "Thu, 14 Dec 2017 10:39:19 GMT" ], "Pragma": [ "no-cache" @@ -1004,20 +5768,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "74a6c054-1a48-4385-a4e0-d0b644265fa5" + "d6f0e24e-4c1d-4daa-8ee2-8dbf8cd92bbd" ], "request-id": [ - "74a6c054-1a48-4385-a4e0-d0b644265fa5" + "d6f0e24e-4c1d-4daa-8ee2-8dbf8cd92bbd" ], "elapsed-time": [ - "70" + "52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1026,29 +5790,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14801" ], "x-ms-correlation-request-id": [ - "d5e43d7f-6472-4a12-bf62-a29df5fc8095" + "f021a729-25d7-4604-b6ce-151d74e4bf72" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192402Z:d5e43d7f-6472-4a12-bf62-a29df5fc8095" + "CENTRALUS:20171214T103920Z:f021a729-25d7-4604-b6ce-151d74e4bf72" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e85e5a8a-2412-40f8-94fb-e6314852545a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1060,7 +5830,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:24:32 GMT" + "Thu, 14 Dec 2017 10:39:29 GMT" ], "Pragma": [ "no-cache" @@ -1069,20 +5839,91 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f105c74f-b118-4e3f-a092-e0d68a793d29" + "e85e5a8a-2412-40f8-94fb-e6314852545a" ], "request-id": [ - "f105c74f-b118-4e3f-a092-e0d68a793d29" + "e85e5a8a-2412-40f8-94fb-e6314852545a" ], "elapsed-time": [ - "75" + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-correlation-request-id": [ + "3a689774-a0e1-451f-ae39-d66786693c48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T103930Z:3a689774-a0e1-451f-ae39-d66786693c48" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "325ce23b-08cc-476a-a46b-5d36a6243b46" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:39:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "325ce23b-08cc-476a-a46b-5d36a6243b46" + ], + "request-id": [ + "325ce23b-08cc-476a-a46b-5d36a6243b46" + ], + "elapsed-time": [ + "110" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1091,29 +5932,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14799" ], "x-ms-correlation-request-id": [ - "ada327a6-843c-48cf-a484-f1283eb79888" + "1d00605f-4320-4379-b713-c55bc03ae63e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192432Z:ada327a6-843c-48cf-a484-f1283eb79888" + "CENTRALUS:20171214T103941Z:1d00605f-4320-4379-b713-c55bc03ae63e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c4473013-08a9-4ea3-ab29-be1768e9424a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1125,7 +5972,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:25:02 GMT" + "Thu, 14 Dec 2017 10:39:51 GMT" ], "Pragma": [ "no-cache" @@ -1134,20 +5981,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "dfdf31dd-c1cc-42c0-b15a-f197f813542b" + "c4473013-08a9-4ea3-ab29-be1768e9424a" ], "request-id": [ - "dfdf31dd-c1cc-42c0-b15a-f197f813542b" + "c4473013-08a9-4ea3-ab29-be1768e9424a" ], "elapsed-time": [ - "69" + "62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,29 +6003,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14798" ], "x-ms-correlation-request-id": [ - "f5c258ba-ecfc-41d2-a22a-c83171a1c182" + "b1c93fa3-4dc1-44e2-bcaa-d218bdfb82a2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192502Z:f5c258ba-ecfc-41d2-a22a-c83171a1c182" + "CENTRALUS:20171214T103951Z:b1c93fa3-4dc1-44e2-bcaa-d218bdfb82a2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1e4e9588-8fa0-475b-99e5-579f23870bce" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1190,7 +6043,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:25:32 GMT" + "Thu, 14 Dec 2017 10:40:00 GMT" ], "Pragma": [ "no-cache" @@ -1199,20 +6052,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5c710c2e-0198-4474-9949-aa5f683a4d4e" + "1e4e9588-8fa0-475b-99e5-579f23870bce" ], "request-id": [ - "5c710c2e-0198-4474-9949-aa5f683a4d4e" + "1e4e9588-8fa0-475b-99e5-579f23870bce" ], "elapsed-time": [ - "64" + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,29 +6074,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14797" ], "x-ms-correlation-request-id": [ - "dc073480-3454-4bb8-8153-f3ea2918292c" + "e553dc1c-27b8-40fa-ac3c-1a5f125b7474" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192533Z:dc073480-3454-4bb8-8153-f3ea2918292c" + "CENTRALUS:20171214T104001Z:e553dc1c-27b8-40fa-ac3c-1a5f125b7474" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79d545c6-8745-43a3-8fd0-e4e029f1c9f6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1255,7 +6114,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:26:03 GMT" + "Thu, 14 Dec 2017 10:40:11 GMT" ], "Pragma": [ "no-cache" @@ -1264,20 +6123,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f821898e-827d-434d-b024-2a3c9acd73f9" + "79d545c6-8745-43a3-8fd0-e4e029f1c9f6" ], "request-id": [ - "f821898e-827d-434d-b024-2a3c9acd73f9" + "79d545c6-8745-43a3-8fd0-e4e029f1c9f6" ], "elapsed-time": [ - "457" + "187" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1286,29 +6145,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14796" ], "x-ms-correlation-request-id": [ - "4968dfa1-197e-44f9-af11-086c397cd494" + "563657a5-3e90-464a-bf02-3003f834208a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192603Z:4968dfa1-197e-44f9-af11-086c397cd494" + "CENTRALUS:20171214T104011Z:563657a5-3e90-464a-bf02-3003f834208a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a8b333c7-add8-4200-9b0d-79e6abb2dad0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1320,7 +6185,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:26:33 GMT" + "Thu, 14 Dec 2017 10:40:21 GMT" ], "Pragma": [ "no-cache" @@ -1329,20 +6194,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "06b8082d-55f4-4835-8727-ac9e2367f159" + "a8b333c7-add8-4200-9b0d-79e6abb2dad0" ], "request-id": [ - "06b8082d-55f4-4835-8727-ac9e2367f159" + "a8b333c7-add8-4200-9b0d-79e6abb2dad0" ], "elapsed-time": [ - "64" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1351,29 +6216,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14795" ], "x-ms-correlation-request-id": [ - "bdd853d8-9a70-4590-8967-d737a0ffb03e" + "534aaa8e-0fc6-4890-9982-25713d10abad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192633Z:bdd853d8-9a70-4590-8967-d737a0ffb03e" + "CENTRALUS:20171214T104021Z:534aaa8e-0fc6-4890-9982-25713d10abad" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f54bbe4e-d06c-488f-b06e-a7bb2d2c17e0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1385,7 +6256,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:27:03 GMT" + "Thu, 14 Dec 2017 10:40:32 GMT" ], "Pragma": [ "no-cache" @@ -1394,20 +6265,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6838be72-026e-43ae-a7c6-45d431258541" + "f54bbe4e-d06c-488f-b06e-a7bb2d2c17e0" ], "request-id": [ - "6838be72-026e-43ae-a7c6-45d431258541" + "f54bbe4e-d06c-488f-b06e-a7bb2d2c17e0" ], "elapsed-time": [ - "66" + "67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1416,29 +6287,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14794" ], "x-ms-correlation-request-id": [ - "4977a081-89b0-418f-9355-e59eff00f0a7" + "89dd6789-fb55-4443-b6cf-dd01d65ec7c3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192704Z:4977a081-89b0-418f-9355-e59eff00f0a7" + "CENTRALUS:20171214T104032Z:89dd6789-fb55-4443-b6cf-dd01d65ec7c3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cb508726-fb41-4446-95e1-399d9d61ade9" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1450,7 +6327,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:27:33 GMT" + "Thu, 14 Dec 2017 10:40:41 GMT" ], "Pragma": [ "no-cache" @@ -1459,17 +6336,17 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7c955f67-a0b4-4f6e-a318-0a8900378ca7" + "cb508726-fb41-4446-95e1-399d9d61ade9" ], "request-id": [ - "7c955f67-a0b4-4f6e-a318-0a8900378ca7" + "cb508726-fb41-4446-95e1-399d9d61ade9" ], "elapsed-time": [ "66" @@ -1481,29 +6358,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14793" ], "x-ms-correlation-request-id": [ - "1c2656dd-1227-40a3-b638-fe46b53dc270" + "1ae1e1b6-2e97-4060-8c8e-8fbd6c40e036" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192734Z:1c2656dd-1227-40a3-b638-fe46b53dc270" + "CENTRALUS:20171214T104042Z:1ae1e1b6-2e97-4060-8c8e-8fbd6c40e036" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "88667a66-4d0f-47c0-aad5-769cbb01ad7a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1515,7 +6398,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:28:03 GMT" + "Thu, 14 Dec 2017 10:40:52 GMT" ], "Pragma": [ "no-cache" @@ -1524,20 +6407,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "85d3c173-ba73-43f6-bc31-8cf3247a57ba" + "88667a66-4d0f-47c0-aad5-769cbb01ad7a" ], "request-id": [ - "85d3c173-ba73-43f6-bc31-8cf3247a57ba" + "88667a66-4d0f-47c0-aad5-769cbb01ad7a" ], "elapsed-time": [ - "101" + "62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,29 +6429,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14792" ], "x-ms-correlation-request-id": [ - "be530ecc-f292-412c-9f2b-f743dc654138" + "d45b76ed-8538-4bcb-abda-e9b5e2142dd3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192804Z:be530ecc-f292-412c-9f2b-f743dc654138" + "CENTRALUS:20171214T104052Z:d45b76ed-8538-4bcb-abda-e9b5e2142dd3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9944e146-30b4-4f2d-9892-5f8267a2b4f1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1580,7 +6469,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:28:33 GMT" + "Thu, 14 Dec 2017 10:41:02 GMT" ], "Pragma": [ "no-cache" @@ -1589,20 +6478,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "376c8176-8967-44e5-ae54-c229a3fb38cc" + "9944e146-30b4-4f2d-9892-5f8267a2b4f1" ], "request-id": [ - "376c8176-8967-44e5-ae54-c229a3fb38cc" + "9944e146-30b4-4f2d-9892-5f8267a2b4f1" ], "elapsed-time": [ - "74" + "177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,29 +6500,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14791" ], "x-ms-correlation-request-id": [ - "2348a7d6-cfaf-4486-90dd-d638282e50ce" + "2c71822f-6fb8-4f62-8041-124fc885abcc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192834Z:2348a7d6-cfaf-4486-90dd-d638282e50ce" + "CENTRALUS:20171214T104102Z:2c71822f-6fb8-4f62-8041-124fc885abcc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0b292919-2788-48a8-a6fe-6f9184c8b284" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1645,7 +6540,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:29:04 GMT" + "Thu, 14 Dec 2017 10:41:12 GMT" ], "Pragma": [ "no-cache" @@ -1654,20 +6549,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7581dfb4-3154-422d-b69a-4afad2e6554b" + "0b292919-2788-48a8-a6fe-6f9184c8b284" ], "request-id": [ - "7581dfb4-3154-422d-b69a-4afad2e6554b" + "0b292919-2788-48a8-a6fe-6f9184c8b284" ], "elapsed-time": [ - "74" + "388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1676,29 +6571,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14790" ], "x-ms-correlation-request-id": [ - "3427d346-3bc5-4ced-8198-b0b34274ec34" + "10bda1a6-6e46-4b14-9fc1-09123f89c0c0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192904Z:3427d346-3bc5-4ced-8198-b0b34274ec34" + "CENTRALUS:20171214T104113Z:10bda1a6-6e46-4b14-9fc1-09123f89c0c0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "50f16d52-65b3-4b2b-8c5e-90b2bc1c0c44" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1710,7 +6611,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:29:34 GMT" + "Thu, 14 Dec 2017 10:41:23 GMT" ], "Pragma": [ "no-cache" @@ -1719,17 +6620,17 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ced28b26-9ddd-4fcc-a5dd-f0560ea959bc" + "50f16d52-65b3-4b2b-8c5e-90b2bc1c0c44" ], "request-id": [ - "ced28b26-9ddd-4fcc-a5dd-f0560ea959bc" + "50f16d52-65b3-4b2b-8c5e-90b2bc1c0c44" ], "elapsed-time": [ "65" @@ -1741,29 +6642,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14789" ], "x-ms-correlation-request-id": [ - "b7160dd6-690e-4d61-8bef-1bd8ab3a3513" + "48721473-1c57-42ef-aa13-9bc6fcbcda03" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T192935Z:b7160dd6-690e-4d61-8bef-1bd8ab3a3513" + "CENTRALUS:20171214T104123Z:48721473-1c57-42ef-aa13-9bc6fcbcda03" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2d221cde-d15a-44f6-add4-58ba79086c26" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1775,7 +6682,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:30:04 GMT" + "Thu, 14 Dec 2017 10:41:33 GMT" ], "Pragma": [ "no-cache" @@ -1784,20 +6691,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3d64ebbc-e898-4c9c-a35b-4546b5092ee4" + "2d221cde-d15a-44f6-add4-58ba79086c26" ], "request-id": [ - "3d64ebbc-e898-4c9c-a35b-4546b5092ee4" + "2d221cde-d15a-44f6-add4-58ba79086c26" ], "elapsed-time": [ - "188" + "58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,29 +6713,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14788" ], "x-ms-correlation-request-id": [ - "33392511-6225-46a2-b106-56b932f3a6b6" + "0e57ae3a-33f6-436a-87f9-6ed33d865256" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T193005Z:33392511-6225-46a2-b106-56b932f3a6b6" + "CENTRALUS:20171214T104133Z:0e57ae3a-33f6-436a-87f9-6ed33d865256" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "964d76c6-bf91-4eb4-9c5d-52b04383aaa3" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1840,7 +6753,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:30:35 GMT" + "Thu, 14 Dec 2017 10:41:43 GMT" ], "Pragma": [ "no-cache" @@ -1849,20 +6762,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "832e3030-d78f-46a0-8cc1-ce6f265725b5" + "964d76c6-bf91-4eb4-9c5d-52b04383aaa3" ], "request-id": [ - "832e3030-d78f-46a0-8cc1-ce6f265725b5" + "964d76c6-bf91-4eb4-9c5d-52b04383aaa3" ], "elapsed-time": [ - "74" + "212" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1871,29 +6784,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14787" ], "x-ms-correlation-request-id": [ - "a3213676-9d94-4afb-a49d-d1a0ad745ebb" + "0a3635df-9b63-4cf8-9f5c-81b4256e4d04" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T193035Z:a3213676-9d94-4afb-a49d-d1a0ad745ebb" + "CENTRALUS:20171214T104143Z:0a3635df-9b63-4cf8-9f5c-81b4256e4d04" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5b4b1329-ed01-4eee-8306-a8a11a424ae8" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552\",\"name\":\"azs-3552\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170\",\"name\":\"azs-3170\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard2\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1905,7 +6824,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:31:04 GMT" + "Thu, 14 Dec 2017 10:41:54 GMT" ], "Pragma": [ "no-cache" @@ -1914,20 +6833,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A17%3A25.4140134Z'\"" + "W/\"datetime'2017-12-14T10%3A25%3A20.0472037Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d71e8a1e-360b-4cee-8678-eac0688c5f57" + "5b4b1329-ed01-4eee-8306-a8a11a424ae8" ], "request-id": [ - "d71e8a1e-360b-4cee-8678-eac0688c5f57" + "5b4b1329-ed01-4eee-8306-a8a11a424ae8" ], "elapsed-time": [ - "133" + "86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,25 +6855,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14786" ], "x-ms-correlation-request-id": [ - "907a438d-497a-43ce-8fe9-9cf17fe52119" + "12bf0286-aca7-458e-bcd8-2e9e2fb5fac2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T193105Z:907a438d-497a-43ce-8fe9-9cf17fe52119" + "CENTRALUS:20171214T104154Z:12bf0286-aca7-458e-bcd8-2e9e2fb5fac2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6270/providers/Microsoft.Search/searchServices/azs-3552?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0zNTUyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet473/providers/Microsoft.Search/searchServices/azs-3170?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTMxNzA/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c540ce50-95f0-427a-937e-eef344d437f6" + "1e0f08e4-b73a-47ae-8d18-fc7f8c3984c6" ], "accept-language": [ "en-US" @@ -1976,19 +6895,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:31:08 GMT" + "Thu, 14 Dec 2017 10:42:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c540ce50-95f0-427a-937e-eef344d437f6" + "1e0f08e4-b73a-47ae-8d18-fc7f8c3984c6" ], "request-id": [ - "c540ce50-95f0-427a-937e-eef344d437f6" + "1e0f08e4-b73a-47ae-8d18-fc7f8c3984c6" ], "elapsed-time": [ - "2554" + "6290" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1997,13 +6916,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1160" ], "x-ms-correlation-request-id": [ - "4ff18cc3-0e1d-459f-bded-eedb93d5c31f" + "2fed61c2-6cf4-46a2-a020-d50f20002a8e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T193108Z:4ff18cc3-0e1d-459f-bded-eedb93d5c31f" + "CENTRALUS:20171214T104201Z:2fed61c2-6cf4-46a2-a020-d50f20002a8e" ] }, "StatusCode": 200 @@ -2011,10 +6930,10 @@ ], "Names": { "GenerateName": [ - "azsmnet6270" + "azsmnet473" ], "GenerateServiceName": [ - "azs-3552" + "azs-3170" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json index 8b8990f02022e..8e1cd89176e2d 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3HighDensityService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1d90c2f-7729-4726-849d-4eddb9170807" + "0678e0ff-b8e2-4527-85b3-ab3d1569c54d" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:47:02 GMT" + "Thu, 14 Dec 2017 09:51:48 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1172" ], "x-ms-request-id": [ - "3f62370b-06eb-47d5-b1e7-ea912edd7009" + "1b92251b-5464-48ae-98eb-162f274a3f43" ], "x-ms-correlation-request-id": [ - "3f62370b-06eb-47d5-b1e7-ea912edd7009" + "1b92251b-5464-48ae-98eb-162f274a3f43" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184703Z:3f62370b-06eb-47d5-b1e7-ea912edd7009" + "CENTRALUS:20171214T095148Z:1b92251b-5464-48ae-98eb-162f274a3f43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3139?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMTM5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6126?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MTI2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "b4de3c6c-368e-465c-b03e-2ea8a6c83d18" + "4fb369fc-e06a-4705-94cc-385971f046cd" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139\",\r\n \"name\": \"azsmnet3139\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126\",\r\n \"name\": \"azsmnet6126\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:47:03 GMT" + "Thu, 14 Dec 2017 09:51:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1171" ], "x-ms-request-id": [ - "13e6174a-9ef6-4583-ab5e-ccd0ee88a5d6" + "0e020d7d-e375-410a-8a8c-cb261a6f3d9a" ], "x-ms-correlation-request-id": [ - "13e6174a-9ef6-4583-ab5e-ccd0ee88a5d6" + "0e020d7d-e375-410a-8a8c-cb261a6f3d9a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184703Z:13e6174a-9ef6-4583-ab5e-ccd0ee88a5d6" + "CENTRALUS:20171214T095155Z:0e020d7d-e375-410a-8a8c-cb261a6f3d9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"highDensity\"\r\n },\r\n \"sku\": {\r\n \"name\": \"standard3\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "181" ], "x-ms-client-request-id": [ - "c2ea9fae-e4d6-4b8f-8216-4fbd802e8792" + "214d2f11-f145-4910-9fb3-3540d217d35c" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Length": [ - "400" + "402" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:47:39 GMT" + "Thu, 14 Dec 2017 09:52:33 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "x-ms-request-id": [ - "c2ea9fae-e4d6-4b8f-8216-4fbd802e8792" + "214d2f11-f145-4910-9fb3-3540d217d35c" ], "request-id": [ - "c2ea9fae-e4d6-4b8f-8216-4fbd802e8792" + "214d2f11-f145-4910-9fb3-3540d217d35c" ], "elapsed-time": [ - "34731" + "31320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,29 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1170" ], "x-ms-correlation-request-id": [ - "88148930-f008-48d8-a28a-0d9c1cd0ffaa" + "3fcc1a92-0598-47ee-b0d6-2920cc57fdcb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184740Z:88148930-f008-48d8-a28a-0d9c1cd0ffaa" + "CENTRALUS:20171214T095233Z:3fcc1a92-0598-47ee-b0d6-2920cc57fdcb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f55aa805-877d-4310-b80e-da10d09f1e1b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -215,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:48:10 GMT" + "Thu, 14 Dec 2017 09:52:43 GMT" ], "Pragma": [ "no-cache" @@ -224,20 +230,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a12e2599-82bb-491e-aafe-9151a75032da" + "f55aa805-877d-4310-b80e-da10d09f1e1b" ], "request-id": [ - "a12e2599-82bb-491e-aafe-9151a75032da" + "f55aa805-877d-4310-b80e-da10d09f1e1b" ], "elapsed-time": [ - "66" + "1128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,29 +252,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "b5de7eb8-9dcc-4de4-9943-36ba5e3684bf" + "2e711f72-a717-49e9-9a06-c8f96cc9548f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184810Z:b5de7eb8-9dcc-4de4-9943-36ba5e3684bf" + "CENTRALUS:20171214T095244Z:2e711f72-a717-49e9-9a06-c8f96cc9548f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "40e6c06e-4260-4352-8fa6-5160de98aac4" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -280,7 +292,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:48:39 GMT" + "Thu, 14 Dec 2017 09:52:55 GMT" ], "Pragma": [ "no-cache" @@ -289,20 +301,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "14b7eb78-7a11-4f6e-b812-b1309fa12540" + "40e6c06e-4260-4352-8fa6-5160de98aac4" ], "request-id": [ - "14b7eb78-7a11-4f6e-b812-b1309fa12540" + "40e6c06e-4260-4352-8fa6-5160de98aac4" ], "elapsed-time": [ - "60" + "607" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,29 +323,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "908fc76d-1487-4e35-8eee-a27097d12137" + "98291ee7-23f1-4018-9e86-e087428e2336" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184840Z:908fc76d-1487-4e35-8eee-a27097d12137" + "CENTRALUS:20171214T095255Z:98291ee7-23f1-4018-9e86-e087428e2336" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9e683833-7e13-4e18-8760-cc82c2bd9500" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -345,7 +363,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:49:09 GMT" + "Thu, 14 Dec 2017 09:53:04 GMT" ], "Pragma": [ "no-cache" @@ -354,20 +372,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "87eaab12-b818-4592-be96-90f5b2660f09" + "9e683833-7e13-4e18-8760-cc82c2bd9500" ], "request-id": [ - "87eaab12-b818-4592-be96-90f5b2660f09" + "9e683833-7e13-4e18-8760-cc82c2bd9500" ], "elapsed-time": [ - "100" + "207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,29 +394,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "c33a535b-65c2-453d-b2cb-d5f0dc193b9f" + "a9a6d048-2634-48fc-8199-b7fb0dd62fa1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184910Z:c33a535b-65c2-453d-b2cb-d5f0dc193b9f" + "CENTRALUS:20171214T095305Z:a9a6d048-2634-48fc-8199-b7fb0dd62fa1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6a512bd4-7661-44cb-b85a-189158bf60b1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +434,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:49:39 GMT" + "Thu, 14 Dec 2017 09:53:15 GMT" ], "Pragma": [ "no-cache" @@ -419,20 +443,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d3df0ffc-277a-4a33-890a-4c8d752609cb" + "6a512bd4-7661-44cb-b85a-189158bf60b1" ], "request-id": [ - "d3df0ffc-277a-4a33-890a-4c8d752609cb" + "6a512bd4-7661-44cb-b85a-189158bf60b1" ], "elapsed-time": [ - "97" + "102" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,29 +465,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "1b1b0f43-19a8-48af-a6ad-09f403ada791" + "630302c3-5d92-44d7-adcd-b00dbd2b4466" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T184940Z:1b1b0f43-19a8-48af-a6ad-09f403ada791" + "CENTRALUS:20171214T095315Z:630302c3-5d92-44d7-adcd-b00dbd2b4466" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "97854cb8-3b7a-47a4-a686-9202864dc31d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -475,7 +505,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:50:10 GMT" + "Thu, 14 Dec 2017 09:53:26 GMT" ], "Pragma": [ "no-cache" @@ -484,20 +514,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8eefb316-5f1f-499b-ab2d-2a97fd391a25" + "97854cb8-3b7a-47a4-a686-9202864dc31d" ], "request-id": [ - "8eefb316-5f1f-499b-ab2d-2a97fd391a25" + "97854cb8-3b7a-47a4-a686-9202864dc31d" ], "elapsed-time": [ - "74" + "111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -506,29 +536,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-correlation-request-id": [ - "1e04065b-4b44-4c39-85ff-9487b18a776a" + "4a0bfa17-644a-4fbe-adc0-ed3df735193b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185011Z:1e04065b-4b44-4c39-85ff-9487b18a776a" + "CENTRALUS:20171214T095326Z:4a0bfa17-644a-4fbe-adc0-ed3df735193b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "46629d92-3147-434d-8bef-9addd389a228" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -540,7 +576,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:50:40 GMT" + "Thu, 14 Dec 2017 09:53:36 GMT" ], "Pragma": [ "no-cache" @@ -549,20 +585,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b4cfee31-ebc7-44ff-b5a2-b83d3fb85f1d" + "46629d92-3147-434d-8bef-9addd389a228" ], "request-id": [ - "b4cfee31-ebc7-44ff-b5a2-b83d3fb85f1d" + "46629d92-3147-434d-8bef-9addd389a228" ], "elapsed-time": [ - "135" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -571,29 +607,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "90fed168-1c12-4e89-a746-5593f723aed2" + "680d8850-8282-4e06-80c9-f85b1ccb2678" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185041Z:90fed168-1c12-4e89-a746-5593f723aed2" + "CENTRALUS:20171214T095336Z:680d8850-8282-4e06-80c9-f85b1ccb2678" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3c6915cf-b586-4d5c-bca9-150415807c4f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -605,7 +647,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:51:10 GMT" + "Thu, 14 Dec 2017 09:53:45 GMT" ], "Pragma": [ "no-cache" @@ -614,20 +656,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2d70c7ec-d592-44d8-99f9-778918c8b62c" + "3c6915cf-b586-4d5c-bca9-150415807c4f" ], "request-id": [ - "2d70c7ec-d592-44d8-99f9-778918c8b62c" + "3c6915cf-b586-4d5c-bca9-150415807c4f" ], "elapsed-time": [ - "103" + "67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,29 +678,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14991" ], "x-ms-correlation-request-id": [ - "b5110f32-4aa8-404f-a042-19903b040651" + "30dbffd4-ea5a-4e55-a629-0e2c6ee85fe4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185111Z:b5110f32-4aa8-404f-a042-19903b040651" + "CENTRALUS:20171214T095346Z:30dbffd4-ea5a-4e55-a629-0e2c6ee85fe4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b2175f47-3a11-437e-a2c5-865605d40fd7" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -670,7 +718,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:51:41 GMT" + "Thu, 14 Dec 2017 09:53:56 GMT" ], "Pragma": [ "no-cache" @@ -679,20 +727,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1a6ec53d-60d9-4b95-b56c-555a837986a5" + "b2175f47-3a11-437e-a2c5-865605d40fd7" ], "request-id": [ - "1a6ec53d-60d9-4b95-b56c-555a837986a5" + "b2175f47-3a11-437e-a2c5-865605d40fd7" ], "elapsed-time": [ - "89" + "128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -701,29 +749,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14990" ], "x-ms-correlation-request-id": [ - "42ee99fc-5235-4adb-b5df-14b1772f4b35" + "04bc8e57-d310-4696-8e04-41975973617a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185141Z:42ee99fc-5235-4adb-b5df-14b1772f4b35" + "CENTRALUS:20171214T095356Z:04bc8e57-d310-4696-8e04-41975973617a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bab06673-8a35-4039-99ed-e60d5815ca7e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -735,7 +789,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:52:11 GMT" + "Thu, 14 Dec 2017 09:54:10 GMT" ], "Pragma": [ "no-cache" @@ -744,20 +798,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "377adc4e-af17-4940-92dd-396704f92a02" + "bab06673-8a35-4039-99ed-e60d5815ca7e" ], "request-id": [ - "377adc4e-af17-4940-92dd-396704f92a02" + "bab06673-8a35-4039-99ed-e60d5815ca7e" ], "elapsed-time": [ - "87" + "3510" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,29 +820,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14989" ], "x-ms-correlation-request-id": [ - "91e0cf4f-4ee1-45cc-9e45-f2233638cbe2" + "a0232cfb-759c-4692-84de-df798b68606b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185211Z:91e0cf4f-4ee1-45cc-9e45-f2233638cbe2" + "CENTRALUS:20171214T095410Z:a0232cfb-759c-4692-84de-df798b68606b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6aa925c-72f8-4397-a832-0ca22255cf76" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -800,7 +860,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:52:42 GMT" + "Thu, 14 Dec 2017 09:54:20 GMT" ], "Pragma": [ "no-cache" @@ -809,20 +869,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9cce812d-7acd-4fb5-b45b-cec0df1638d8" + "d6aa925c-72f8-4397-a832-0ca22255cf76" ], "request-id": [ - "9cce812d-7acd-4fb5-b45b-cec0df1638d8" + "d6aa925c-72f8-4397-a832-0ca22255cf76" ], "elapsed-time": [ - "371" + "251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,29 +891,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14988" ], "x-ms-correlation-request-id": [ - "a438e830-f083-4c24-b511-9ea53e66eae7" + "56d29d28-57d3-4d6b-90cf-20995506561d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185242Z:a438e830-f083-4c24-b511-9ea53e66eae7" + "CENTRALUS:20171214T095420Z:56d29d28-57d3-4d6b-90cf-20995506561d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "522e1061-da34-4786-95db-ea0bc03c2a9f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -865,7 +931,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:53:12 GMT" + "Thu, 14 Dec 2017 09:54:30 GMT" ], "Pragma": [ "no-cache" @@ -874,20 +940,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ce6a0fbc-5733-447a-8691-81fbca7bebf0" + "522e1061-da34-4786-95db-ea0bc03c2a9f" ], "request-id": [ - "ce6a0fbc-5733-447a-8691-81fbca7bebf0" + "522e1061-da34-4786-95db-ea0bc03c2a9f" ], "elapsed-time": [ - "64" + "59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,29 +962,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14987" ], "x-ms-correlation-request-id": [ - "ba8446c2-3762-4c5a-8b3f-cad33a846f42" + "71ea35fe-bf27-4db2-8089-4edd3fed7be0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185312Z:ba8446c2-3762-4c5a-8b3f-cad33a846f42" + "CENTRALUS:20171214T095430Z:71ea35fe-bf27-4db2-8089-4edd3fed7be0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "00b56434-e767-4f5a-8006-aa682548a72e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -930,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:53:42 GMT" + "Thu, 14 Dec 2017 09:54:41 GMT" ], "Pragma": [ "no-cache" @@ -939,20 +1011,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ab77dfb4-9311-4bed-a745-5563dff7f495" + "00b56434-e767-4f5a-8006-aa682548a72e" ], "request-id": [ - "ab77dfb4-9311-4bed-a745-5563dff7f495" + "00b56434-e767-4f5a-8006-aa682548a72e" ], "elapsed-time": [ - "270" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -961,29 +1033,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14986" ], "x-ms-correlation-request-id": [ - "7b9b0615-4262-4295-8c46-1f2a4ea280e3" + "fe8e8055-3afb-47b3-8a78-7569531cf205" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185343Z:7b9b0615-4262-4295-8c46-1f2a4ea280e3" + "CENTRALUS:20171214T095441Z:fe8e8055-3afb-47b3-8a78-7569531cf205" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6bcc3c66-a9db-4a99-9744-3f3a27c101cd" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -995,7 +1073,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:54:13 GMT" + "Thu, 14 Dec 2017 09:54:51 GMT" ], "Pragma": [ "no-cache" @@ -1004,20 +1082,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f0fff42c-695c-45ed-8290-9f9fe5b34dc3" + "6bcc3c66-a9db-4a99-9744-3f3a27c101cd" ], "request-id": [ - "f0fff42c-695c-45ed-8290-9f9fe5b34dc3" + "6bcc3c66-a9db-4a99-9744-3f3a27c101cd" ], "elapsed-time": [ - "123" + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1026,29 +1104,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14985" ], "x-ms-correlation-request-id": [ - "a8958f36-03a5-4ff3-ad26-032ae39dd59b" + "6a76c670-0939-4550-a8ca-4f73406c17da" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185413Z:a8958f36-03a5-4ff3-ad26-032ae39dd59b" + "CENTRALUS:20171214T095451Z:6a76c670-0939-4550-a8ca-4f73406c17da" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "87c71d37-02c5-4236-a522-957b1a671402" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1060,7 +1144,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:54:43 GMT" + "Thu, 14 Dec 2017 09:55:01 GMT" ], "Pragma": [ "no-cache" @@ -1069,20 +1153,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4ecee30f-194c-4d92-a52c-726738ece811" + "87c71d37-02c5-4236-a522-957b1a671402" ], "request-id": [ - "4ecee30f-194c-4d92-a52c-726738ece811" + "87c71d37-02c5-4236-a522-957b1a671402" ], "elapsed-time": [ - "554" + "990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1091,29 +1175,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14984" ], "x-ms-correlation-request-id": [ - "0e348fe1-aa67-4e31-95c0-564d743e3e80" + "f48b5dbc-5056-4880-b814-1b75f70a0427" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185444Z:0e348fe1-aa67-4e31-95c0-564d743e3e80" + "CENTRALUS:20171214T095502Z:f48b5dbc-5056-4880-b814-1b75f70a0427" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aea5ed2f-2cf7-400f-a12e-db2070b4957e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1125,7 +1215,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:55:13 GMT" + "Thu, 14 Dec 2017 09:55:12 GMT" ], "Pragma": [ "no-cache" @@ -1134,20 +1224,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3fea8712-4f4c-4519-9a77-32c423e68edb" + "aea5ed2f-2cf7-400f-a12e-db2070b4957e" ], "request-id": [ - "3fea8712-4f4c-4519-9a77-32c423e68edb" + "aea5ed2f-2cf7-400f-a12e-db2070b4957e" ], "elapsed-time": [ - "102" + "195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,29 +1246,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14983" ], "x-ms-correlation-request-id": [ - "82006e07-aeb8-449c-8621-1a0eb002394c" + "2b10a365-5ef9-4be2-8cce-e2ba6b65a61f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185514Z:82006e07-aeb8-449c-8621-1a0eb002394c" + "CENTRALUS:20171214T095512Z:2b10a365-5ef9-4be2-8cce-e2ba6b65a61f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b8babbc0-2f7f-4b40-970c-89051513a270" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1190,7 +1286,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:55:44 GMT" + "Thu, 14 Dec 2017 09:55:22 GMT" ], "Pragma": [ "no-cache" @@ -1199,20 +1295,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d4781995-a368-400f-8bf9-84d689a5f19c" + "b8babbc0-2f7f-4b40-970c-89051513a270" ], "request-id": [ - "d4781995-a368-400f-8bf9-84d689a5f19c" + "b8babbc0-2f7f-4b40-970c-89051513a270" ], "elapsed-time": [ - "302" + "68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,29 +1317,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14982" ], "x-ms-correlation-request-id": [ - "6c2efdec-8a97-4d45-8442-bdf2f6091118" + "9f2192a9-8e05-40f8-a3d5-93b79bbc5d32" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185544Z:6c2efdec-8a97-4d45-8442-bdf2f6091118" + "CENTRALUS:20171214T095522Z:9f2192a9-8e05-40f8-a3d5-93b79bbc5d32" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2db782d1-5763-4308-b302-04c67c210044" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1255,7 +1357,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:56:14 GMT" + "Thu, 14 Dec 2017 09:55:32 GMT" ], "Pragma": [ "no-cache" @@ -1264,20 +1366,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7ab05184-e985-400d-be27-191cccf6d621" + "2db782d1-5763-4308-b302-04c67c210044" ], "request-id": [ - "7ab05184-e985-400d-be27-191cccf6d621" + "2db782d1-5763-4308-b302-04c67c210044" ], "elapsed-time": [ - "101" + "97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1286,29 +1388,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14981" ], "x-ms-correlation-request-id": [ - "7596e3c5-a308-44a6-97e5-6185f1780a7e" + "2a645d27-4420-4d26-8cd7-86710d04a7d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185614Z:7596e3c5-a308-44a6-97e5-6185f1780a7e" + "CENTRALUS:20171214T095533Z:2a645d27-4420-4d26-8cd7-86710d04a7d3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d94871e0-1d3f-4a4e-9ddb-873802ef2963" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1320,7 +1428,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:56:44 GMT" + "Thu, 14 Dec 2017 09:55:44 GMT" ], "Pragma": [ "no-cache" @@ -1329,20 +1437,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "dd59394b-5ed4-4499-941f-7c1097af565e" + "d94871e0-1d3f-4a4e-9ddb-873802ef2963" ], "request-id": [ - "dd59394b-5ed4-4499-941f-7c1097af565e" + "d94871e0-1d3f-4a4e-9ddb-873802ef2963" ], "elapsed-time": [ - "218" + "1265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1351,29 +1459,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14980" ], "x-ms-correlation-request-id": [ - "e3b492e9-d728-48f7-9a09-38369c1b87da" + "df540eb3-b968-4075-ab79-ccae8565fbb3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185645Z:e3b492e9-d728-48f7-9a09-38369c1b87da" + "CENTRALUS:20171214T095544Z:df540eb3-b968-4075-ab79-ccae8565fbb3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "00dee76a-1a05-46e6-8012-b36ff840b4c1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1385,7 +1499,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:57:15 GMT" + "Thu, 14 Dec 2017 09:55:53 GMT" ], "Pragma": [ "no-cache" @@ -1394,20 +1508,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "19644689-2077-435f-b829-b04d83812ed1" + "00dee76a-1a05-46e6-8012-b36ff840b4c1" ], "request-id": [ - "19644689-2077-435f-b829-b04d83812ed1" + "00dee76a-1a05-46e6-8012-b36ff840b4c1" ], "elapsed-time": [ - "184" + "61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1416,29 +1530,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14979" ], "x-ms-correlation-request-id": [ - "bea55111-b992-4a04-b546-e0b2672a80aa" + "24940012-b22b-497d-a8f9-a2db154a83aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185715Z:bea55111-b992-4a04-b546-e0b2672a80aa" + "CENTRALUS:20171214T095554Z:24940012-b22b-497d-a8f9-a2db154a83aa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dbd9313b-7642-4b8d-b63a-600e1c55280e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1450,7 +1570,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:57:45 GMT" + "Thu, 14 Dec 2017 09:56:04 GMT" ], "Pragma": [ "no-cache" @@ -1459,20 +1579,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2f799772-c74e-4b2b-9c7b-0fe4f65554da" + "dbd9313b-7642-4b8d-b63a-600e1c55280e" ], "request-id": [ - "2f799772-c74e-4b2b-9c7b-0fe4f65554da" + "dbd9313b-7642-4b8d-b63a-600e1c55280e" ], "elapsed-time": [ - "322" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1481,29 +1601,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14978" ], "x-ms-correlation-request-id": [ - "092bc88b-57d5-48c2-8c5b-df2d0ced935b" + "1fd6384c-22ee-4af3-9eea-adad29fa365f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185745Z:092bc88b-57d5-48c2-8c5b-df2d0ced935b" + "CENTRALUS:20171214T095604Z:1fd6384c-22ee-4af3-9eea-adad29fa365f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "abe455b1-1c24-4143-b669-4ec62dd9c144" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1515,7 +1641,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:58:16 GMT" + "Thu, 14 Dec 2017 09:56:15 GMT" ], "Pragma": [ "no-cache" @@ -1524,20 +1650,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "25a2ae9a-9f16-4da0-9056-139c11210932" + "abe455b1-1c24-4143-b669-4ec62dd9c144" ], "request-id": [ - "25a2ae9a-9f16-4da0-9056-139c11210932" + "abe455b1-1c24-4143-b669-4ec62dd9c144" ], "elapsed-time": [ - "63" + "111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,29 +1672,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14977" ], "x-ms-correlation-request-id": [ - "0ef9a7e0-7a96-4e9a-927e-4c5a91ab759e" + "a1de8563-834e-448b-86e7-e5091b3ffb85" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185816Z:0ef9a7e0-7a96-4e9a-927e-4c5a91ab759e" + "CENTRALUS:20171214T095615Z:a1de8563-834e-448b-86e7-e5091b3ffb85" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "75e1b684-7555-469f-b35d-3bdb28d31cf0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1580,7 +1712,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:58:46 GMT" + "Thu, 14 Dec 2017 09:56:24 GMT" ], "Pragma": [ "no-cache" @@ -1589,20 +1721,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "93172fca-1feb-4fd5-b488-29fa578d9114" + "75e1b684-7555-469f-b35d-3bdb28d31cf0" ], "request-id": [ - "93172fca-1feb-4fd5-b488-29fa578d9114" + "75e1b684-7555-469f-b35d-3bdb28d31cf0" ], "elapsed-time": [ - "220" + "63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,29 +1743,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14976" ], "x-ms-correlation-request-id": [ - "392c37ca-a278-4ab6-9a7d-bace641cfe7a" + "e4aad97b-cdfb-4a89-922e-2a5fc75ce69d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185846Z:392c37ca-a278-4ab6-9a7d-bace641cfe7a" + "CENTRALUS:20171214T095625Z:e4aad97b-cdfb-4a89-922e-2a5fc75ce69d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c67fcb06-320c-44b7-bc9a-3bbffdf8647f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1645,7 +1783,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:59:15 GMT" + "Thu, 14 Dec 2017 09:56:35 GMT" ], "Pragma": [ "no-cache" @@ -1654,20 +1792,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "35585153-331d-4149-8d81-2c7c2af4b263" + "c67fcb06-320c-44b7-bc9a-3bbffdf8647f" ], "request-id": [ - "35585153-331d-4149-8d81-2c7c2af4b263" + "c67fcb06-320c-44b7-bc9a-3bbffdf8647f" ], "elapsed-time": [ - "115" + "158" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1676,29 +1814,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14975" ], "x-ms-correlation-request-id": [ - "4205a21e-1a5c-4adc-9c43-f39bcabdce4e" + "64da0f75-d560-4695-9dde-a829b562545d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185916Z:4205a21e-1a5c-4adc-9c43-f39bcabdce4e" + "CENTRALUS:20171214T095635Z:64da0f75-d560-4695-9dde-a829b562545d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e0ad8111-6f6a-4314-ba38-6855c87d981c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1710,7 +1854,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 18:59:47 GMT" + "Thu, 14 Dec 2017 09:56:45 GMT" ], "Pragma": [ "no-cache" @@ -1719,20 +1863,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7395fe0a-5c68-423d-88eb-c3e0209f9482" + "e0ad8111-6f6a-4314-ba38-6855c87d981c" ], "request-id": [ - "7395fe0a-5c68-423d-88eb-c3e0209f9482" + "e0ad8111-6f6a-4314-ba38-6855c87d981c" ], "elapsed-time": [ - "187" + "80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,29 +1885,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14974" ], "x-ms-correlation-request-id": [ - "fe58c549-3b2e-4539-a12b-0b261e09968e" + "d26c931f-eb74-41c8-9cb9-0499550672ca" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T185947Z:fe58c549-3b2e-4539-a12b-0b261e09968e" + "CENTRALUS:20171214T095645Z:d26c931f-eb74-41c8-9cb9-0499550672ca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d6c0662b-45e0-4695-be19-9b87e823acb6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1775,7 +1925,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:00:17 GMT" + "Thu, 14 Dec 2017 09:56:55 GMT" ], "Pragma": [ "no-cache" @@ -1784,20 +1934,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f34e5370-24b9-4d1f-b4fb-0d332251823f" + "d6c0662b-45e0-4695-be19-9b87e823acb6" ], "request-id": [ - "f34e5370-24b9-4d1f-b4fb-0d332251823f" + "d6c0662b-45e0-4695-be19-9b87e823acb6" ], "elapsed-time": [ - "91" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,29 +1956,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14973" ], "x-ms-correlation-request-id": [ - "c264cb8d-4443-46ab-927d-14d88b9c6f05" + "c72db118-8acf-4ca0-b468-e687c08b8c82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190017Z:c264cb8d-4443-46ab-927d-14d88b9c6f05" + "CENTRALUS:20171214T095655Z:c72db118-8acf-4ca0-b468-e687c08b8c82" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "728e3445-a939-44f5-bca4-6d2a16a8f352" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1840,7 +1996,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:00:47 GMT" + "Thu, 14 Dec 2017 09:57:07 GMT" ], "Pragma": [ "no-cache" @@ -1849,20 +2005,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ab6f2339-b900-4577-a1a4-b47a0ed084c6" + "728e3445-a939-44f5-bca4-6d2a16a8f352" ], "request-id": [ - "ab6f2339-b900-4577-a1a4-b47a0ed084c6" + "728e3445-a939-44f5-bca4-6d2a16a8f352" ], "elapsed-time": [ - "227" + "2492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1871,29 +2027,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14972" ], "x-ms-correlation-request-id": [ - "07a29144-da8d-495b-b197-7ea61c7c3fd0" + "9f24251e-4ad3-4557-90db-88426c457bed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190047Z:07a29144-da8d-495b-b197-7ea61c7c3fd0" + "CENTRALUS:20171214T095708Z:9f24251e-4ad3-4557-90db-88426c457bed" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2a15a19b-0cfa-406c-8bde-1ff2d995f572" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1905,7 +2067,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:01:18 GMT" + "Thu, 14 Dec 2017 09:57:18 GMT" ], "Pragma": [ "no-cache" @@ -1914,20 +2076,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c4774039-424b-432a-9a8b-0396d92aaec2" + "2a15a19b-0cfa-406c-8bde-1ff2d995f572" ], "request-id": [ - "c4774039-424b-432a-9a8b-0396d92aaec2" + "2a15a19b-0cfa-406c-8bde-1ff2d995f572" ], "elapsed-time": [ - "166" + "71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,29 +2098,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14971" ], "x-ms-correlation-request-id": [ - "49b2ac04-51c3-4ede-adc9-1de4d4523d26" + "10b6e5df-9a14-4c8c-8e52-97f8dfcdfe51" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190118Z:49b2ac04-51c3-4ede-adc9-1de4d4523d26" + "CENTRALUS:20171214T095718Z:10b6e5df-9a14-4c8c-8e52-97f8dfcdfe51" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "62a9696d-dfe6-4473-8acc-ae1902fc59ee" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1970,7 +2138,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:01:50 GMT" + "Thu, 14 Dec 2017 09:57:28 GMT" ], "Pragma": [ "no-cache" @@ -1979,20 +2147,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e481e279-aa1e-4488-a56c-286fcc540450" + "62a9696d-dfe6-4473-8acc-ae1902fc59ee" ], "request-id": [ - "e481e279-aa1e-4488-a56c-286fcc540450" + "62a9696d-dfe6-4473-8acc-ae1902fc59ee" ], "elapsed-time": [ - "2625" + "589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2001,29 +2169,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14970" ], "x-ms-correlation-request-id": [ - "65478b78-8cdf-42d7-ac1f-05b03fb937e4" + "709de081-869d-4309-9138-dcc72f1e8700" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190150Z:65478b78-8cdf-42d7-ac1f-05b03fb937e4" + "CENTRALUS:20171214T095729Z:709de081-869d-4309-9138-dcc72f1e8700" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "296ddd58-4f7d-4437-ad87-e395daa75332" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417\",\"name\":\"azs-417\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2035,7 +2209,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:02:20 GMT" + "Thu, 14 Dec 2017 09:57:39 GMT" ], "Pragma": [ "no-cache" @@ -2044,20 +2218,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T18%3A47%3A39.5249205Z'\"" + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4fb66415-c9f3-4c16-a478-d280e9e019a1" + "296ddd58-4f7d-4437-ad87-e395daa75332" ], "request-id": [ - "4fb66415-c9f3-4c16-a478-d280e9e019a1" + "296ddd58-4f7d-4437-ad87-e395daa75332" ], "elapsed-time": [ - "103" + "114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2066,25 +2240,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14969" ], "x-ms-correlation-request-id": [ - "4e46e0ed-033f-4075-bf0c-4619483d451a" + "e5a76701-da43-4afd-bed0-5b397fd8fae8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190221Z:4e46e0ed-033f-4075-bf0c-4619483d451a" + "CENTRALUS:20171214T095739Z:e5a76701-da43-4afd-bed0-5b397fd8fae8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3139/providers/Microsoft.Search/searchServices/azs-417?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6547ca9f-9205-4c90-9ee9-fe37feefae1a" + "e1d6a589-43e2-49ba-b6aa-475c4f2feb12" ], "accept-language": [ "en-US" @@ -2094,10 +2268,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -2106,19 +2280,29 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:02:35 GMT" + "Thu, 14 Dec 2017 09:57:49 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-ms-request-id": [ - "6547ca9f-9205-4c90-9ee9-fe37feefae1a" + "e1d6a589-43e2-49ba-b6aa-475c4f2feb12" ], "request-id": [ - "6547ca9f-9205-4c90-9ee9-fe37feefae1a" + "e1d6a589-43e2-49ba-b6aa-475c4f2feb12" ], "elapsed-time": [ - "1663" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2126,14 +2310,4335 @@ "X-AspNet-Version": [ "4.0.30319" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "b0a598c7-ef6e-4e78-b72e-d286aed37cfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095749Z:b0a598c7-ef6e-4e78-b72e-d286aed37cfa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "350f8ba7-5ea5-46fd-9f97-99edd4d5ee62" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:58:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "350f8ba7-5ea5-46fd-9f97-99edd4d5ee62" + ], + "request-id": [ + "350f8ba7-5ea5-46fd-9f97-99edd4d5ee62" + ], + "elapsed-time": [ + "59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "9c3f075b-a5e2-418a-a40f-ebd9d87598e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095800Z:9c3f075b-a5e2-418a-a40f-ebd9d87598e5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2802549-58ba-47ee-b5c4-022e7658e8f8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:58:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c2802549-58ba-47ee-b5c4-022e7658e8f8" + ], + "request-id": [ + "c2802549-58ba-47ee-b5c4-022e7658e8f8" + ], + "elapsed-time": [ + "75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "e0dbf4d3-60f0-4c44-bc29-62b70127d7a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095810Z:e0dbf4d3-60f0-4c44-bc29-62b70127d7a3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0227d2a2-b887-4212-a995-554246dd62da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:58:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0227d2a2-b887-4212-a995-554246dd62da" + ], + "request-id": [ + "0227d2a2-b887-4212-a995-554246dd62da" + ], + "elapsed-time": [ + "590" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "f71c66e5-a69b-47b9-b9a3-f77f4a9c3ab1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095820Z:f71c66e5-a69b-47b9-b9a3-f77f4a9c3ab1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "310d35a6-0d51-44b8-98f5-d610d2e79951" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:58:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "310d35a6-0d51-44b8-98f5-d610d2e79951" + ], + "request-id": [ + "310d35a6-0d51-44b8-98f5-d610d2e79951" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "a1f2fc6d-fbea-4b8a-a214-a08a0ee4f152" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095831Z:a1f2fc6d-fbea-4b8a-a214-a08a0ee4f152" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fd1254b-c195-4182-8573-98fc5a3eb37f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:58:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6fd1254b-c195-4182-8573-98fc5a3eb37f" + ], + "request-id": [ + "6fd1254b-c195-4182-8573-98fc5a3eb37f" + ], + "elapsed-time": [ + "157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "c32dd532-1a8b-4948-9cdb-03542c18a198" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095841Z:c32dd532-1a8b-4948-9cdb-03542c18a198" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a675fe4-508f-405e-abfd-ed62ef0c33a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:58:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3a675fe4-508f-405e-abfd-ed62ef0c33a2" + ], + "request-id": [ + "3a675fe4-508f-405e-abfd-ed62ef0c33a2" + ], + "elapsed-time": [ + "303" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "ca0d31b4-49c2-47d2-9280-c257b9cd83fc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095851Z:ca0d31b4-49c2-47d2-9280-c257b9cd83fc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d74e9bb9-6d5e-4657-9d2c-e9e7bd7660e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:59:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d74e9bb9-6d5e-4657-9d2c-e9e7bd7660e9" + ], + "request-id": [ + "d74e9bb9-6d5e-4657-9d2c-e9e7bd7660e9" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "f9473eb4-ac73-4622-a57c-90b4bf269812" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095902Z:f9473eb4-ac73-4622-a57c-90b4bf269812" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3d379d5-45a2-4f68-800c-2355a591bc9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:59:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f3d379d5-45a2-4f68-800c-2355a591bc9d" + ], + "request-id": [ + "f3d379d5-45a2-4f68-800c-2355a591bc9d" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "00eee6e5-b166-48f4-b3c1-d473d24c68a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095915Z:00eee6e5-b166-48f4-b3c1-d473d24c68a3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9691aa16-57b6-4b76-9e89-6673cc734487" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:59:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9691aa16-57b6-4b76-9e89-6673cc734487" + ], + "request-id": [ + "9691aa16-57b6-4b76-9e89-6673cc734487" + ], + "elapsed-time": [ + "61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "46b8fdd7-7912-46d2-aa83-ba03ed5e8d8f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095925Z:46b8fdd7-7912-46d2-aa83-ba03ed5e8d8f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd5ad67f-c20e-453c-ac46-d4c5e8db8ed8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fd5ad67f-c20e-453c-ac46-d4c5e8db8ed8" + ], + "request-id": [ + "fd5ad67f-c20e-453c-ac46-d4c5e8db8ed8" + ], + "elapsed-time": [ + "3145" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "f79612c7-9c19-428b-9803-0fe16b2b5df4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095938Z:f79612c7-9c19-428b-9803-0fe16b2b5df4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac0efe38-6073-443c-8c29-781a2f16d33f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:59:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ac0efe38-6073-443c-8c29-781a2f16d33f" + ], + "request-id": [ + "ac0efe38-6073-443c-8c29-781a2f16d33f" + ], + "elapsed-time": [ + "114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "0695d577-0056-4fcd-b5eb-9188b4dd9223" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095948Z:0695d577-0056-4fcd-b5eb-9188b4dd9223" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fc54855-7ead-4266-9d4d-c08dc0e3c2af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:59:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9fc54855-7ead-4266-9d4d-c08dc0e3c2af" + ], + "request-id": [ + "9fc54855-7ead-4266-9d4d-c08dc0e3c2af" + ], + "elapsed-time": [ + "69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "d53f32a7-83b0-4af4-a356-3c7bfb4e8773" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095959Z:d53f32a7-83b0-4af4-a356-3c7bfb4e8773" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c428994-1b69-4b0f-82e7-f404b0b804d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:00:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1c428994-1b69-4b0f-82e7-f404b0b804d2" + ], + "request-id": [ + "1c428994-1b69-4b0f-82e7-f404b0b804d2" + ], + "elapsed-time": [ + "270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "26efc072-db8e-4bed-8692-b0ba99c84fcd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100009Z:26efc072-db8e-4bed-8692-b0ba99c84fcd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81fd4afb-5204-4ccb-a779-dac6bd3f9570" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:00:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "81fd4afb-5204-4ccb-a779-dac6bd3f9570" + ], + "request-id": [ + "81fd4afb-5204-4ccb-a779-dac6bd3f9570" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "d34805d9-5a38-4e7c-9d88-41496aa79b1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100019Z:d34805d9-5a38-4e7c-9d88-41496aa79b1e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39191699-41b5-4a87-ba10-745dc2b52cf4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:00:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "39191699-41b5-4a87-ba10-745dc2b52cf4" + ], + "request-id": [ + "39191699-41b5-4a87-ba10-745dc2b52cf4" + ], + "elapsed-time": [ + "65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "315fdeb1-24af-448a-92dd-a458900a234e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100029Z:315fdeb1-24af-448a-92dd-a458900a234e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "953fa284-019d-4650-b867-8fb822b7717b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:00:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "953fa284-019d-4650-b867-8fb822b7717b" + ], + "request-id": [ + "953fa284-019d-4650-b867-8fb822b7717b" + ], + "elapsed-time": [ + "66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "4ceb65f2-9680-49c4-a390-76eaf63bcdad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100040Z:4ceb65f2-9680-49c4-a390-76eaf63bcdad" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4aeb3680-2b55-4272-b061-901afe135d34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:00:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4aeb3680-2b55-4272-b061-901afe135d34" + ], + "request-id": [ + "4aeb3680-2b55-4272-b061-901afe135d34" + ], + "elapsed-time": [ + "87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "96b5b63b-f4d0-4b56-8a58-10e9c067fffa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100050Z:96b5b63b-f4d0-4b56-8a58-10e9c067fffa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd6bd3b4-9de1-4bad-8e42-3d6c64031778" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:01:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dd6bd3b4-9de1-4bad-8e42-3d6c64031778" + ], + "request-id": [ + "dd6bd3b4-9de1-4bad-8e42-3d6c64031778" + ], + "elapsed-time": [ + "77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "5347b026-16de-4267-b5db-37bd959875c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100100Z:5347b026-16de-4267-b5db-37bd959875c4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c1eac3c-7443-4698-b049-ed0ebf597649" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:01:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3c1eac3c-7443-4698-b049-ed0ebf597649" + ], + "request-id": [ + "3c1eac3c-7443-4698-b049-ed0ebf597649" + ], + "elapsed-time": [ + "271" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "b5efdac1-dbb0-4612-a9c1-76b9483038ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100110Z:b5efdac1-dbb0-4612-a9c1-76b9483038ca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "069cb719-267e-4cc8-bef9-cfbc1827a992" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:01:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "069cb719-267e-4cc8-bef9-cfbc1827a992" + ], + "request-id": [ + "069cb719-267e-4cc8-bef9-cfbc1827a992" + ], + "elapsed-time": [ + "68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "5ffaf0e1-7422-4fec-9e02-71848dc82047" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100121Z:5ffaf0e1-7422-4fec-9e02-71848dc82047" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7647b1f1-f4a1-446f-a902-cb26b8a29b25" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:01:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7647b1f1-f4a1-446f-a902-cb26b8a29b25" + ], + "request-id": [ + "7647b1f1-f4a1-446f-a902-cb26b8a29b25" + ], + "elapsed-time": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "7ea29589-dbcf-4a8b-9690-e03126901058" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100131Z:7ea29589-dbcf-4a8b-9690-e03126901058" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ca61e43-1bdf-4ca2-9117-cca4e1629d38" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:01:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8ca61e43-1bdf-4ca2-9117-cca4e1629d38" + ], + "request-id": [ + "8ca61e43-1bdf-4ca2-9117-cca4e1629d38" + ], + "elapsed-time": [ + "61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "b63ad476-b796-4ed4-9a93-7c01b54045fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100141Z:b63ad476-b796-4ed4-9a93-7c01b54045fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8e73bf3-4fd0-44ec-8a85-3a762ed4593b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:01:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c8e73bf3-4fd0-44ec-8a85-3a762ed4593b" + ], + "request-id": [ + "c8e73bf3-4fd0-44ec-8a85-3a762ed4593b" + ], + "elapsed-time": [ + "76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "70cd40fc-4de9-450c-9330-dede447dbbdb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100151Z:70cd40fc-4de9-450c-9330-dede447dbbdb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bda1d1fe-d9df-4860-ad8d-2f80b4136a2b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:02:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bda1d1fe-d9df-4860-ad8d-2f80b4136a2b" + ], + "request-id": [ + "bda1d1fe-d9df-4860-ad8d-2f80b4136a2b" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "cd4a7a2a-1c2e-4662-bc98-31ef96e49b3e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100201Z:cd4a7a2a-1c2e-4662-bc98-31ef96e49b3e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc80fc2b-3509-4127-aa25-d230aba4c6b1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:02:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fc80fc2b-3509-4127-aa25-d230aba4c6b1" + ], + "request-id": [ + "fc80fc2b-3509-4127-aa25-d230aba4c6b1" + ], + "elapsed-time": [ + "85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "a1afcd3a-40a1-494f-b5b5-7f675fad3af7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100227Z:a1afcd3a-40a1-494f-b5b5-7f675fad3af7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1974e8a-1356-41f7-946f-99a2ef05e750" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:02:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a1974e8a-1356-41f7-946f-99a2ef05e750" + ], + "request-id": [ + "a1974e8a-1356-41f7-946f-99a2ef05e750" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "c67ee565-2941-4fa4-a9fc-ec0158ebd2fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100238Z:c67ee565-2941-4fa4-a9fc-ec0158ebd2fa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eeff20c2-dacb-4e43-b9b8-f1d91692ae19" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:02:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eeff20c2-dacb-4e43-b9b8-f1d91692ae19" + ], + "request-id": [ + "eeff20c2-dacb-4e43-b9b8-f1d91692ae19" + ], + "elapsed-time": [ + "72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "bd9b0db3-a9ff-4f43-8336-05047c14e347" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100249Z:bd9b0db3-a9ff-4f43-8336-05047c14e347" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2e7ad01-31e5-4ea3-a696-e9a4b6616ca2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:03:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e2e7ad01-31e5-4ea3-a696-e9a4b6616ca2" + ], + "request-id": [ + "e2e7ad01-31e5-4ea3-a696-e9a4b6616ca2" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "feccfb2a-b4d3-4d0f-a914-8cb5ece5f5c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100302Z:feccfb2a-b4d3-4d0f-a914-8cb5ece5f5c9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80a20293-f159-4865-9655-14475bac72bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:03:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "80a20293-f159-4865-9655-14475bac72bb" + ], + "request-id": [ + "80a20293-f159-4865-9655-14475bac72bb" + ], + "elapsed-time": [ + "102" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f63690f4-7a7f-4a72-a102-9e901628e8ac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100312Z:f63690f4-7a7f-4a72-a102-9e901628e8ac" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "030e45ab-22f9-4d9a-87c1-7e9f095cfa90" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:03:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "030e45ab-22f9-4d9a-87c1-7e9f095cfa90" + ], + "request-id": [ + "030e45ab-22f9-4d9a-87c1-7e9f095cfa90" + ], + "elapsed-time": [ + "721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "01ba0eb0-4dc6-47e1-87fa-a744445514c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100323Z:01ba0eb0-4dc6-47e1-87fa-a744445514c0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "049b22e2-7764-48db-9c90-fac8865b60c3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "049b22e2-7764-48db-9c90-fac8865b60c3" + ], + "request-id": [ + "049b22e2-7764-48db-9c90-fac8865b60c3" + ], + "elapsed-time": [ + "69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "b1a01deb-42ca-4a68-9195-35de7a78b3dd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100333Z:b1a01deb-42ca-4a68-9195-35de7a78b3dd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2b76a4e-2bfb-4cf9-b020-16167577a1ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:03:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f2b76a4e-2bfb-4cf9-b020-16167577a1ff" + ], + "request-id": [ + "f2b76a4e-2bfb-4cf9-b020-16167577a1ff" + ], + "elapsed-time": [ + "67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "d6a7ee33-93bb-4b8a-a250-8cfb579a6b59" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100343Z:d6a7ee33-93bb-4b8a-a250-8cfb579a6b59" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "782bb696-0dad-418d-aebb-57c6c0801375" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:03:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "782bb696-0dad-418d-aebb-57c6c0801375" + ], + "request-id": [ + "782bb696-0dad-418d-aebb-57c6c0801375" + ], + "elapsed-time": [ + "69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "2df25cac-1998-48db-b00e-d3ef01252b77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100357Z:2df25cac-1998-48db-b00e-d3ef01252b77" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "864d1530-e3ae-4416-9846-6d664f227a61" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:04:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "864d1530-e3ae-4416-9846-6d664f227a61" + ], + "request-id": [ + "864d1530-e3ae-4416-9846-6d664f227a61" + ], + "elapsed-time": [ + "2552" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "37c75bc3-d17f-4ee6-9a35-4761e247dece" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100409Z:37c75bc3-d17f-4ee6-9a35-4761e247dece" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74782bcb-e0c2-48d5-bf38-b19a658e4385" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:04:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "74782bcb-e0c2-48d5-bf38-b19a658e4385" + ], + "request-id": [ + "74782bcb-e0c2-48d5-bf38-b19a658e4385" + ], + "elapsed-time": [ + "71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "1bb154d9-cf16-4766-9bd4-bbbc80ae6e25" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100422Z:1bb154d9-cf16-4766-9bd4-bbbc80ae6e25" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62090a90-f6b4-4d8f-b529-44f0b368f69f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:04:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "62090a90-f6b4-4d8f-b529-44f0b368f69f" + ], + "request-id": [ + "62090a90-f6b4-4d8f-b529-44f0b368f69f" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "54279461-c7d4-4083-bea6-f96956f15c83" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100433Z:54279461-c7d4-4083-bea6-f96956f15c83" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "221b6bde-ecd4-4dc7-a751-ee24ef8264fc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:04:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "221b6bde-ecd4-4dc7-a751-ee24ef8264fc" + ], + "request-id": [ + "221b6bde-ecd4-4dc7-a751-ee24ef8264fc" + ], + "elapsed-time": [ + "52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "aa7778fa-442c-4a9f-a9f4-2748468556ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100446Z:aa7778fa-442c-4a9f-a9f4-2748468556ca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "643bf293-f7f4-4358-9263-3373fb858982" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:04:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "643bf293-f7f4-4358-9263-3373fb858982" + ], + "request-id": [ + "643bf293-f7f4-4358-9263-3373fb858982" + ], + "elapsed-time": [ + "71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "81775585-3e0e-4cf1-ab5c-be6d0d518ce8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100456Z:81775585-3e0e-4cf1-ab5c-be6d0d518ce8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc63611c-f060-4a3b-b69d-bb1bda665d86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:05:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bc63611c-f060-4a3b-b69d-bb1bda665d86" + ], + "request-id": [ + "bc63611c-f060-4a3b-b69d-bb1bda665d86" + ], + "elapsed-time": [ + "58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "484ad002-9db8-429e-9c0c-a4d23d7e48e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100506Z:484ad002-9db8-429e-9c0c-a4d23d7e48e8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9e6d36c-b194-4d8e-9a09-4853ca52430f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:05:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e9e6d36c-b194-4d8e-9a09-4853ca52430f" + ], + "request-id": [ + "e9e6d36c-b194-4d8e-9a09-4853ca52430f" + ], + "elapsed-time": [ + "694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "9597ded8-6225-456b-bc87-e932056ef253" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100517Z:9597ded8-6225-456b-bc87-e932056ef253" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "546831c5-ebb1-40b7-a379-c3e442917ffb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:05:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "546831c5-ebb1-40b7-a379-c3e442917ffb" + ], + "request-id": [ + "546831c5-ebb1-40b7-a379-c3e442917ffb" + ], + "elapsed-time": [ + "71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "952c0bc5-fdec-4953-8ef1-72ffe37a983e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100527Z:952c0bc5-fdec-4953-8ef1-72ffe37a983e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a47b8b07-3b1b-438f-b824-0735e761ae0a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:05:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a47b8b07-3b1b-438f-b824-0735e761ae0a" + ], + "request-id": [ + "a47b8b07-3b1b-438f-b824-0735e761ae0a" + ], + "elapsed-time": [ + "75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "91ff3c3a-3770-407d-83c3-e311406b94ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100537Z:91ff3c3a-3770-407d-83c3-e311406b94ba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "652230fb-de77-4836-8700-df2052f5e081" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:05:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "652230fb-de77-4836-8700-df2052f5e081" + ], + "request-id": [ + "652230fb-de77-4836-8700-df2052f5e081" + ], + "elapsed-time": [ + "102" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "db9f9084-8362-40e4-8892-6375322618e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100548Z:db9f9084-8362-40e4-8892-6375322618e6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c660fcd-8447-4e65-b008-8e6cc5fb9eb6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:05:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2c660fcd-8447-4e65-b008-8e6cc5fb9eb6" + ], + "request-id": [ + "2c660fcd-8447-4e65-b008-8e6cc5fb9eb6" + ], + "elapsed-time": [ + "1257" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "1fa06d25-39e4-4805-8c1b-469a6eedde65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100559Z:1fa06d25-39e4-4805-8c1b-469a6eedde65" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e31e31b1-c0c1-463e-8e42-f7ade2b514da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:06:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e31e31b1-c0c1-463e-8e42-f7ade2b514da" + ], + "request-id": [ + "e31e31b1-c0c1-463e-8e42-f7ade2b514da" + ], + "elapsed-time": [ + "61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "03ea1ba1-77d3-4bfd-8db8-dcbfa498fe30" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100609Z:03ea1ba1-77d3-4bfd-8db8-dcbfa498fe30" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe99544f-003c-40b8-b646-25de5cb32503" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:06:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fe99544f-003c-40b8-b646-25de5cb32503" + ], + "request-id": [ + "fe99544f-003c-40b8-b646-25de5cb32503" + ], + "elapsed-time": [ + "79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "46cb5c47-2b68-4cc9-b4f3-b66cc4dbcafc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100619Z:46cb5c47-2b68-4cc9-b4f3-b66cc4dbcafc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "268e7379-a78c-4fb8-b54d-5001a58588a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:06:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "268e7379-a78c-4fb8-b54d-5001a58588a9" + ], + "request-id": [ + "268e7379-a78c-4fb8-b54d-5001a58588a9" + ], + "elapsed-time": [ + "68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "8c92da69-0d6d-4960-89c7-5680cffd33ae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100629Z:8c92da69-0d6d-4960-89c7-5680cffd33ae" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d0f4adf-b836-4259-97cf-d814ec99181d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:06:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3d0f4adf-b836-4259-97cf-d814ec99181d" + ], + "request-id": [ + "3d0f4adf-b836-4259-97cf-d814ec99181d" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "7a942ec3-61d5-42b1-b535-0192160943c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100640Z:7a942ec3-61d5-42b1-b535-0192160943c6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e147e0ec-c33c-4333-8113-af33ee8d43ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:06:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e147e0ec-c33c-4333-8113-af33ee8d43ee" + ], + "request-id": [ + "e147e0ec-c33c-4333-8113-af33ee8d43ee" + ], + "elapsed-time": [ + "177" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "5135e002-fa91-475d-9189-e873249badfb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100650Z:5135e002-fa91-475d-9189-e873249badfb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2198b614-d65b-4dca-aede-36d10203da82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:07:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2198b614-d65b-4dca-aede-36d10203da82" + ], + "request-id": [ + "2198b614-d65b-4dca-aede-36d10203da82" + ], + "elapsed-time": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "a48510dc-04dc-444f-8f00-5fbba9e1b92d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100700Z:a48510dc-04dc-444f-8f00-5fbba9e1b92d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80c40a9f-1b87-4b0d-af94-7f220e59a151" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:07:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "80c40a9f-1b87-4b0d-af94-7f220e59a151" + ], + "request-id": [ + "80c40a9f-1b87-4b0d-af94-7f220e59a151" + ], + "elapsed-time": [ + "55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "6b02b8bf-4605-4e8d-a1eb-3cb101dafd2c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100710Z:6b02b8bf-4605-4e8d-a1eb-3cb101dafd2c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f161278-a9a5-4c9e-8f6c-99a9fb1eece7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:07:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7f161278-a9a5-4c9e-8f6c-99a9fb1eece7" + ], + "request-id": [ + "7f161278-a9a5-4c9e-8f6c-99a9fb1eece7" + ], + "elapsed-time": [ + "65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "387d53b8-df0b-45cc-b16d-cefe0cbfe61a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100720Z:387d53b8-df0b-45cc-b16d-cefe0cbfe61a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69e926b8-c07b-47e5-9103-dc50a56c9a3c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:07:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "69e926b8-c07b-47e5-9103-dc50a56c9a3c" + ], + "request-id": [ + "69e926b8-c07b-47e5-9103-dc50a56c9a3c" + ], + "elapsed-time": [ + "56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "ebfafee5-fb9e-4360-9722-de9bec7bc0ae" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100731Z:ebfafee5-fb9e-4360-9722-de9bec7bc0ae" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5c5fed8-4aee-44fd-b296-70a569e2cedd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:07:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d5c5fed8-4aee-44fd-b296-70a569e2cedd" + ], + "request-id": [ + "d5c5fed8-4aee-44fd-b296-70a569e2cedd" + ], + "elapsed-time": [ + "67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "54981299-ec5c-4277-a44a-e89d2f7b354c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100741Z:54981299-ec5c-4277-a44a-e89d2f7b354c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "873a59b0-f4be-4504-b191-b12eaf0e5b11" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:07:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "873a59b0-f4be-4504-b191-b12eaf0e5b11" + ], + "request-id": [ + "873a59b0-f4be-4504-b191-b12eaf0e5b11" + ], + "elapsed-time": [ + "799" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "cd874e5d-4ddd-47f0-95bc-b0ce9badac1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100752Z:cd874e5d-4ddd-47f0-95bc-b0ce9badac1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "712c3e53-e533-4c3c-8be4-4d27e2e15a59" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:08:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "712c3e53-e533-4c3c-8be4-4d27e2e15a59" + ], + "request-id": [ + "712c3e53-e533-4c3c-8be4-4d27e2e15a59" + ], + "elapsed-time": [ + "85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "4cff7139-7f8e-4dfc-b34d-ee7be744eccf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100802Z:4cff7139-7f8e-4dfc-b34d-ee7be744eccf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd41ac15-85cb-4f48-945a-b7752a688b56" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:08:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fd41ac15-85cb-4f48-945a-b7752a688b56" + ], + "request-id": [ + "fd41ac15-85cb-4f48-945a-b7752a688b56" + ], + "elapsed-time": [ + "79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "df809dc7-8c6e-4eac-9073-cb9f13c25304" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100812Z:df809dc7-8c6e-4eac-9073-cb9f13c25304" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fc208c5-1125-4d5a-b69e-fa0bf7aa01c3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:08:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8fc208c5-1125-4d5a-b69e-fa0bf7aa01c3" + ], + "request-id": [ + "8fc208c5-1125-4d5a-b69e-fa0bf7aa01c3" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "9fff8f09-8bc6-41ec-9193-0fd026482122" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100823Z:9fff8f09-8bc6-41ec-9193-0fd026482122" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85f92e11-f323-43df-bc4c-556704f57788" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:08:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "85f92e11-f323-43df-bc4c-556704f57788" + ], + "request-id": [ + "85f92e11-f323-43df-bc4c-556704f57788" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "9a504d64-7db0-4f39-a2b4-c27cad48a62c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100833Z:9a504d64-7db0-4f39-a2b4-c27cad48a62c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4c65237-51a7-4121-8d32-3ac5b44bfd1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191\",\"name\":\"azs-5191\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"highDensity\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:08:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A52%3A30.0803306Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f4c65237-51a7-4121-8d32-3ac5b44bfd1c" + ], + "request-id": [ + "f4c65237-51a7-4121-8d32-3ac5b44bfd1c" + ], + "elapsed-time": [ + "95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "0d77247f-97c4-4587-979e-1c163c51d139" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100843Z:0d77247f-97c4-4587-979e-1c163c51d139" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6126/providers/Microsoft.Search/searchServices/azs-5191?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MTkxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99ba251e-8b75-42a7-b3d6-8adf9220d3c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:08:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "99ba251e-8b75-42a7-b3d6-8adf9220d3c4" + ], + "request-id": [ + "99ba251e-8b75-42a7-b3d6-8adf9220d3c4" + ], + "elapsed-time": [ + "1866" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "9269a545-70e5-4bd7-adcd-b7531df6d9d0" + "3484a8f7-a8c7-473e-9869-2c622772339d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190236Z:9269a545-70e5-4bd7-adcd-b7531df6d9d0" + "CENTRALUS:20171214T100847Z:3484a8f7-a8c7-473e-9869-2c622772339d" ] }, "StatusCode": 200 @@ -2141,10 +6646,10 @@ ], "Names": { "GenerateName": [ - "azsmnet3139" + "azsmnet6126" ], "GenerateServiceName": [ - "azs-417" + "azs-5191" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json index f08b6685c8745..5f407f8a88b22 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandard3Service.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12af6791-324c-49fe-bea6-6ff279c7712a" + "735f78bd-d521-44f1-a036-77a110698772" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:02:40 GMT" + "Thu, 14 Dec 2017 10:09:04 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1186" ], "x-ms-request-id": [ - "0a0f4ad5-e43d-4449-a928-68b5ad41c920" + "80a1e9f9-c2d9-48ca-99a1-995a5959146e" ], "x-ms-correlation-request-id": [ - "0a0f4ad5-e43d-4449-a928-68b5ad41c920" + "80a1e9f9-c2d9-48ca-99a1-995a5959146e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190240Z:0a0f4ad5-e43d-4449-a928-68b5ad41c920" + "CENTRALUS:20171214T100904Z:80a1e9f9-c2d9-48ca-99a1-995a5959146e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7996?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3OTk2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2173?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMTczP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "ec74c0f1-fbc1-48c2-bfae-95bcc2f79838" + "2ba8ba4c-2fd7-4aa1-9138-cb36379a5362" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996\",\r\n \"name\": \"azsmnet7996\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173\",\r\n \"name\": \"azsmnet2173\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:02:41 GMT" + "Thu, 14 Dec 2017 10:09:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1185" ], "x-ms-request-id": [ - "0b612340-1e00-4348-b435-e8679284aaa9" + "0f39df2e-64d9-4a1c-9b39-e8e8243f560a" ], "x-ms-correlation-request-id": [ - "0b612340-1e00-4348-b435-e8679284aaa9" + "0f39df2e-64d9-4a1c-9b39-e8e8243f560a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190241Z:0b612340-1e00-4348-b435-e8679284aaa9" + "CENTRALUS:20171214T100904Z:0f39df2e-64d9-4a1c-9b39-e8e8243f560a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"standard3\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "177" ], "x-ms-client-request-id": [ - "696a06c0-c74c-4c4a-9da4-d670dede1a0b" + "cef1888a-2fb7-4e9c-aaab-c1167844e991" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Length": [ "398" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:03:11 GMT" + "Thu, 14 Dec 2017 10:09:29 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "x-ms-request-id": [ - "696a06c0-c74c-4c4a-9da4-d670dede1a0b" + "cef1888a-2fb7-4e9c-aaab-c1167844e991" ], "request-id": [ - "696a06c0-c74c-4c4a-9da4-d670dede1a0b" + "cef1888a-2fb7-4e9c-aaab-c1167844e991" ], "elapsed-time": [ - "30130" + "23485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,29 +181,3940 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1184" ], "x-ms-correlation-request-id": [ - "6da03e63-d65c-4443-864a-e073c21c9e90" + "eb7e94ee-51ee-4f40-ad6e-ae20cb1d0f97" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190312Z:6da03e63-d65c-4443-864a-e073c21c9e90" + "CENTRALUS:20171214T100929Z:eb7e94ee-51ee-4f40-ad6e-ae20cb1d0f97" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "41263908-c57e-44a1-854e-3ad22e7d5026" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:09:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "41263908-c57e-44a1-854e-3ad22e7d5026" + ], + "request-id": [ + "41263908-c57e-44a1-854e-3ad22e7d5026" + ], + "elapsed-time": [ + "1850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "03963ec1-9a17-4b14-8877-e155e381441d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100941Z:03963ec1-9a17-4b14-8877-e155e381441d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f407283a-85a9-4e16-ac3f-161404db52b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:09:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f407283a-85a9-4e16-ac3f-161404db52b4" + ], + "request-id": [ + "f407283a-85a9-4e16-ac3f-161404db52b4" + ], + "elapsed-time": [ + "246" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "e1619c51-1ff6-4db7-a646-1f606b7757fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T100952Z:e1619c51-1ff6-4db7-a646-1f606b7757fa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a816696-7fcc-4020-8182-590ff1a375fe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:10:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1a816696-7fcc-4020-8182-590ff1a375fe" + ], + "request-id": [ + "1a816696-7fcc-4020-8182-590ff1a375fe" + ], + "elapsed-time": [ + "144" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "06eaa66c-a188-41bd-9ad8-3fd8af7097c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101002Z:06eaa66c-a188-41bd-9ad8-3fd8af7097c6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "694d7c91-1fcc-48ec-92fa-2849ed3762b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:10:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "694d7c91-1fcc-48ec-92fa-2849ed3762b4" + ], + "request-id": [ + "694d7c91-1fcc-48ec-92fa-2849ed3762b4" + ], + "elapsed-time": [ + "60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "8bd50eb9-52cd-4e4f-b705-ea1fb06f2aa1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101012Z:8bd50eb9-52cd-4e4f-b705-ea1fb06f2aa1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79db79d4-6498-45a2-972a-4d8f50dcb498" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:10:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "79db79d4-6498-45a2-972a-4d8f50dcb498" + ], + "request-id": [ + "79db79d4-6498-45a2-972a-4d8f50dcb498" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "feea4d41-48f2-4332-94e4-c0815430bb50" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101022Z:feea4d41-48f2-4332-94e4-c0815430bb50" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7208edf3-cde7-4cd4-bc04-f62075d0f882" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:10:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7208edf3-cde7-4cd4-bc04-f62075d0f882" + ], + "request-id": [ + "7208edf3-cde7-4cd4-bc04-f62075d0f882" + ], + "elapsed-time": [ + "48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "0fd37d8b-624e-447e-9b86-7756e47095d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101032Z:0fd37d8b-624e-447e-9b86-7756e47095d0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8514a55a-7754-4e62-8b51-96c86bd62b60" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:10:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8514a55a-7754-4e62-8b51-96c86bd62b60" + ], + "request-id": [ + "8514a55a-7754-4e62-8b51-96c86bd62b60" + ], + "elapsed-time": [ + "50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "21bd31a4-7956-4306-8b1d-cd8e1bfd3aee" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101043Z:21bd31a4-7956-4306-8b1d-cd8e1bfd3aee" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad2cc2fd-24d1-42ff-9ab8-7d3a247fe6bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:10:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ad2cc2fd-24d1-42ff-9ab8-7d3a247fe6bb" + ], + "request-id": [ + "ad2cc2fd-24d1-42ff-9ab8-7d3a247fe6bb" + ], + "elapsed-time": [ + "165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "d9f96044-8593-4207-b823-03293b56b564" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101053Z:d9f96044-8593-4207-b823-03293b56b564" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "808655fe-795f-45c3-8fae-af08b2dc94eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:11:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "808655fe-795f-45c3-8fae-af08b2dc94eb" + ], + "request-id": [ + "808655fe-795f-45c3-8fae-af08b2dc94eb" + ], + "elapsed-time": [ + "55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "f59ba110-40b9-465a-8600-e208804702c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101103Z:f59ba110-40b9-465a-8600-e208804702c4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d62140e9-3ea7-4031-9934-2a9adf7c7691" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:11:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d62140e9-3ea7-4031-9934-2a9adf7c7691" + ], + "request-id": [ + "d62140e9-3ea7-4031-9934-2a9adf7c7691" + ], + "elapsed-time": [ + "52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "ddd50fba-d463-4b80-a3b1-fe3c61fbdce9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101113Z:ddd50fba-d463-4b80-a3b1-fe3c61fbdce9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d9c415b-a379-48d1-9e7e-57b1a74edd7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:11:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2d9c415b-a379-48d1-9e7e-57b1a74edd7e" + ], + "request-id": [ + "2d9c415b-a379-48d1-9e7e-57b1a74edd7e" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "ddf890d2-3a3a-489f-b690-9d5674967988" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101123Z:ddf890d2-3a3a-489f-b690-9d5674967988" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aa21e41-01e8-4c09-b1cf-ccbe5d89ca25" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:11:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0aa21e41-01e8-4c09-b1cf-ccbe5d89ca25" + ], + "request-id": [ + "0aa21e41-01e8-4c09-b1cf-ccbe5d89ca25" + ], + "elapsed-time": [ + "2548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "05e5df24-0169-4c4b-ab2b-dd939695006a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101136Z:05e5df24-0169-4c4b-ab2b-dd939695006a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0564aea8-89c2-4c10-ace2-e1f1c8584d6b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:11:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0564aea8-89c2-4c10-ace2-e1f1c8584d6b" + ], + "request-id": [ + "0564aea8-89c2-4c10-ace2-e1f1c8584d6b" + ], + "elapsed-time": [ + "59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "0b7ee00d-058c-44e7-93d7-2fd6b1c98fd5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101146Z:0b7ee00d-058c-44e7-93d7-2fd6b1c98fd5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f62b3cb7-f61e-4426-aceb-b083d9ad08d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:11:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f62b3cb7-f61e-4426-aceb-b083d9ad08d1" + ], + "request-id": [ + "f62b3cb7-f61e-4426-aceb-b083d9ad08d1" + ], + "elapsed-time": [ + "67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "ac0f15db-7554-4037-be25-e1d336922644" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101156Z:ac0f15db-7554-4037-be25-e1d336922644" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "308fe9d7-766c-498e-b911-0305da8879cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:12:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "308fe9d7-766c-498e-b911-0305da8879cf" + ], + "request-id": [ + "308fe9d7-766c-498e-b911-0305da8879cf" + ], + "elapsed-time": [ + "296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "a5207c02-4b45-4254-9ff6-89c21779b085" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101207Z:a5207c02-4b45-4254-9ff6-89c21779b085" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "902684f4-7f0c-4a3d-8c13-7a8be8dda1af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:12:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "902684f4-7f0c-4a3d-8c13-7a8be8dda1af" + ], + "request-id": [ + "902684f4-7f0c-4a3d-8c13-7a8be8dda1af" + ], + "elapsed-time": [ + "81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "381294a7-588f-4a75-b4cf-a920f3dba6c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101217Z:381294a7-588f-4a75-b4cf-a920f3dba6c8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "977c4b7e-ac3f-4b34-bff8-9faa1713f3c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:12:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "977c4b7e-ac3f-4b34-bff8-9faa1713f3c6" + ], + "request-id": [ + "977c4b7e-ac3f-4b34-bff8-9faa1713f3c6" + ], + "elapsed-time": [ + "118" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "46ad268c-d973-4e66-baeb-a997167da3fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101227Z:46ad268c-d973-4e66-baeb-a997167da3fd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fe6afee-75cf-4b60-99c5-016c75c7fe29" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:12:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6fe6afee-75cf-4b60-99c5-016c75c7fe29" + ], + "request-id": [ + "6fe6afee-75cf-4b60-99c5-016c75c7fe29" + ], + "elapsed-time": [ + "61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "384b7a61-9a48-4690-87a1-7968c5133e20" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101237Z:384b7a61-9a48-4690-87a1-7968c5133e20" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1f04d50-c734-46c3-8000-d5332db76fdc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:12:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f1f04d50-c734-46c3-8000-d5332db76fdc" + ], + "request-id": [ + "f1f04d50-c734-46c3-8000-d5332db76fdc" + ], + "elapsed-time": [ + "71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "77a90447-3d0b-4db0-a48c-d061d2c5bc4c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101248Z:77a90447-3d0b-4db0-a48c-d061d2c5bc4c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7da34b6-43db-4dde-9118-2c072c2f0a03" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:12:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e7da34b6-43db-4dde-9118-2c072c2f0a03" + ], + "request-id": [ + "e7da34b6-43db-4dde-9118-2c072c2f0a03" + ], + "elapsed-time": [ + "1878" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "e936e447-7e14-449a-9a20-a8b3b444ed8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101300Z:e936e447-7e14-449a-9a20-a8b3b444ed8c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "250e564a-2d2d-48d3-899d-dfea5ce1790f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:13:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "250e564a-2d2d-48d3-899d-dfea5ce1790f" + ], + "request-id": [ + "250e564a-2d2d-48d3-899d-dfea5ce1790f" + ], + "elapsed-time": [ + "1390" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "72fafcd3-399f-4030-b3d2-bb2743d08b1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101311Z:72fafcd3-399f-4030-b3d2-bb2743d08b1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6489b28-e084-44cf-ab93-024097f6d394" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:13:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d6489b28-e084-44cf-ab93-024097f6d394" + ], + "request-id": [ + "d6489b28-e084-44cf-ab93-024097f6d394" + ], + "elapsed-time": [ + "81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "4251a471-1f31-4e87-8737-6e96eff1e598" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101321Z:4251a471-1f31-4e87-8737-6e96eff1e598" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6389a45-0de5-4126-866d-7e7565031ae5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:13:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e6389a45-0de5-4126-866d-7e7565031ae5" + ], + "request-id": [ + "e6389a45-0de5-4126-866d-7e7565031ae5" + ], + "elapsed-time": [ + "87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "3bf33f11-e373-4b8d-b682-24589d55229c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101332Z:3bf33f11-e373-4b8d-b682-24589d55229c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5c41f7d-50dc-4992-a075-f22e775834b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:13:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d5c41f7d-50dc-4992-a075-f22e775834b7" + ], + "request-id": [ + "d5c41f7d-50dc-4992-a075-f22e775834b7" + ], + "elapsed-time": [ + "70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "8b8e7274-bb99-4699-9358-8a81ed0cf44e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101342Z:8b8e7274-bb99-4699-9358-8a81ed0cf44e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52b53142-1600-4356-8ed8-b9c68d2dc4a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:13:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "52b53142-1600-4356-8ed8-b9c68d2dc4a9" + ], + "request-id": [ + "52b53142-1600-4356-8ed8-b9c68d2dc4a9" + ], + "elapsed-time": [ + "2201" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "b38461fa-7ca2-4f70-bd71-e5ba1667bca6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101354Z:b38461fa-7ca2-4f70-bd71-e5ba1667bca6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94e973e9-7317-4227-9630-3c23c750ef33" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:14:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "94e973e9-7317-4227-9630-3c23c750ef33" + ], + "request-id": [ + "94e973e9-7317-4227-9630-3c23c750ef33" + ], + "elapsed-time": [ + "65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "4b4eb2d5-c579-4634-b483-72faacf0d697" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101404Z:4b4eb2d5-c579-4634-b483-72faacf0d697" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66f06e80-0f32-47ac-b255-8bcf2e33639e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:14:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "66f06e80-0f32-47ac-b255-8bcf2e33639e" + ], + "request-id": [ + "66f06e80-0f32-47ac-b255-8bcf2e33639e" + ], + "elapsed-time": [ + "78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "35b20f1e-27dc-4caa-a131-9535f9153d73" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101414Z:35b20f1e-27dc-4caa-a131-9535f9153d73" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5b2a1c9-4fb2-4303-b675-87793a6a7e9f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:14:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f5b2a1c9-4fb2-4303-b675-87793a6a7e9f" + ], + "request-id": [ + "f5b2a1c9-4fb2-4303-b675-87793a6a7e9f" + ], + "elapsed-time": [ + "97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "4229c7d1-044b-47d6-8a3e-92d4763a9b89" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101425Z:4229c7d1-044b-47d6-8a3e-92d4763a9b89" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a2e2c97-356d-43b6-bc58-3622d96f58ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:14:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7a2e2c97-356d-43b6-bc58-3622d96f58ee" + ], + "request-id": [ + "7a2e2c97-356d-43b6-bc58-3622d96f58ee" + ], + "elapsed-time": [ + "338" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "0310b571-8fba-4fe7-ace1-277093155275" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101435Z:0310b571-8fba-4fe7-ace1-277093155275" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fa496a8-22a0-40de-81b5-cd311472a17f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:14:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0fa496a8-22a0-40de-81b5-cd311472a17f" + ], + "request-id": [ + "0fa496a8-22a0-40de-81b5-cd311472a17f" + ], + "elapsed-time": [ + "69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "b13c3f98-f336-4daa-97bf-3810ea810d48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101445Z:b13c3f98-f336-4daa-97bf-3810ea810d48" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c57cd5b8-eae5-4914-9d59-76444cbd53d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:14:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c57cd5b8-eae5-4914-9d59-76444cbd53d5" + ], + "request-id": [ + "c57cd5b8-eae5-4914-9d59-76444cbd53d5" + ], + "elapsed-time": [ + "81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "29156661-b080-4673-b5be-46d17c85cb5c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101456Z:29156661-b080-4673-b5be-46d17c85cb5c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2e536bf-6c63-4d64-aa1b-15680e865189" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:15:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b2e536bf-6c63-4d64-aa1b-15680e865189" + ], + "request-id": [ + "b2e536bf-6c63-4d64-aa1b-15680e865189" + ], + "elapsed-time": [ + "75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "ee1ad8cf-8d35-48cb-a75e-0b80725b110d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101506Z:ee1ad8cf-8d35-48cb-a75e-0b80725b110d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbc423c7-e4a4-4cc0-8e71-f9bc1c7891eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:15:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fbc423c7-e4a4-4cc0-8e71-f9bc1c7891eb" + ], + "request-id": [ + "fbc423c7-e4a4-4cc0-8e71-f9bc1c7891eb" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "dc8a439c-db1d-4e8d-8b17-54f5d2a655fc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101516Z:dc8a439c-db1d-4e8d-8b17-54f5d2a655fc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c141cd0-f6ab-4da8-9366-bc443741cfb8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:15:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0c141cd0-f6ab-4da8-9366-bc443741cfb8" + ], + "request-id": [ + "0c141cd0-f6ab-4da8-9366-bc443741cfb8" + ], + "elapsed-time": [ + "66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "a1c256e5-de40-461a-b131-00f3d74cbff0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101526Z:a1c256e5-de40-461a-b131-00f3d74cbff0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4be3b784-66bc-4c67-b039-6d7afb5eb589" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:15:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4be3b784-66bc-4c67-b039-6d7afb5eb589" + ], + "request-id": [ + "4be3b784-66bc-4c67-b039-6d7afb5eb589" + ], + "elapsed-time": [ + "98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "e4e2decb-4da9-4df0-af57-1b9a79992eff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101536Z:e4e2decb-4da9-4df0-af57-1b9a79992eff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a930512-ef37-42ba-ab58-08a4e11bea55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:15:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0a930512-ef37-42ba-ab58-08a4e11bea55" + ], + "request-id": [ + "0a930512-ef37-42ba-ab58-08a4e11bea55" + ], + "elapsed-time": [ + "87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "9f41f8bf-dedd-47e4-8838-e2052616bb8b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101547Z:9f41f8bf-dedd-47e4-8838-e2052616bb8b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f82706c-f0a6-4037-a345-a9b9238cb3d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:15:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5f82706c-f0a6-4037-a345-a9b9238cb3d9" + ], + "request-id": [ + "5f82706c-f0a6-4037-a345-a9b9238cb3d9" + ], + "elapsed-time": [ + "100" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "8cf4f69c-7ee5-41a9-b185-ad57c22b351a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101557Z:8cf4f69c-7ee5-41a9-b185-ad57c22b351a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89ec1604-2c3b-4753-a1c7-e4f77c68fb03" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:16:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "89ec1604-2c3b-4753-a1c7-e4f77c68fb03" + ], + "request-id": [ + "89ec1604-2c3b-4753-a1c7-e4f77c68fb03" + ], + "elapsed-time": [ + "813" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "09ae1fdf-5a2f-4126-9d69-6fac6d3375d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101608Z:09ae1fdf-5a2f-4126-9d69-6fac6d3375d9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6abc7ae-1f68-460b-a5f1-0607a190567a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:16:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f6abc7ae-1f68-460b-a5f1-0607a190567a" + ], + "request-id": [ + "f6abc7ae-1f68-460b-a5f1-0607a190567a" + ], + "elapsed-time": [ + "97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "55aecac3-4f65-40d3-9e12-a5a259f258a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101618Z:55aecac3-4f65-40d3-9e12-a5a259f258a9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd665867-ad47-4b09-b688-cca2fb34f957" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:16:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cd665867-ad47-4b09-b688-cca2fb34f957" + ], + "request-id": [ + "cd665867-ad47-4b09-b688-cca2fb34f957" + ], + "elapsed-time": [ + "66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "e2abc225-e6e2-4ae3-b0f9-2fef5502d956" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101628Z:e2abc225-e6e2-4ae3-b0f9-2fef5502d956" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b31ffc15-9479-42b6-80cb-3e2882e2cc05" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:16:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b31ffc15-9479-42b6-80cb-3e2882e2cc05" + ], + "request-id": [ + "b31ffc15-9479-42b6-80cb-3e2882e2cc05" + ], + "elapsed-time": [ + "169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "77217150-a560-4db2-b60c-ca3c14ff6b1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101638Z:77217150-a560-4db2-b60c-ca3c14ff6b1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b830436e-c674-4f28-9bd6-c30296e3349a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:16:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b830436e-c674-4f28-9bd6-c30296e3349a" + ], + "request-id": [ + "b830436e-c674-4f28-9bd6-c30296e3349a" + ], + "elapsed-time": [ + "89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "6ce518cf-848e-49f4-addc-cc686cce3083" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101649Z:6ce518cf-848e-49f4-addc-cc686cce3083" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ff9966d-f6c3-4f5c-9cb0-e73be8570728" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:16:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6ff9966d-f6c3-4f5c-9cb0-e73be8570728" + ], + "request-id": [ + "6ff9966d-f6c3-4f5c-9cb0-e73be8570728" + ], + "elapsed-time": [ + "196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "578ec71f-b4d8-4267-bfa3-61cc8dc2da5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101659Z:578ec71f-b4d8-4267-bfa3-61cc8dc2da5a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e54fcd76-7d3f-465d-9c48-2fe7d1b6ebe6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:17:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e54fcd76-7d3f-465d-9c48-2fe7d1b6ebe6" + ], + "request-id": [ + "e54fcd76-7d3f-465d-9c48-2fe7d1b6ebe6" + ], + "elapsed-time": [ + "352" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "fde3e076-8462-4526-8463-c04a8fc0dc7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101709Z:fde3e076-8462-4526-8463-c04a8fc0dc7c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17f02f53-19a3-4b1c-b736-88e04316ee03" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:17:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "17f02f53-19a3-4b1c-b736-88e04316ee03" + ], + "request-id": [ + "17f02f53-19a3-4b1c-b736-88e04316ee03" + ], + "elapsed-time": [ + "120" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "2e280282-bbd2-487d-a3d5-478c004c3490" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101720Z:2e280282-bbd2-487d-a3d5-478c004c3490" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25a6dcfd-193d-4fab-968c-d31c9a5a2525" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:17:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "25a6dcfd-193d-4fab-968c-d31c9a5a2525" + ], + "request-id": [ + "25a6dcfd-193d-4fab-968c-d31c9a5a2525" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "c52077c4-d3e8-4496-b3be-93ff299a717a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101730Z:c52077c4-d3e8-4496-b3be-93ff299a717a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9080f2ae-48d6-4c16-937c-595b45977559" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:17:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9080f2ae-48d6-4c16-937c-595b45977559" + ], + "request-id": [ + "9080f2ae-48d6-4c16-937c-595b45977559" + ], + "elapsed-time": [ + "2016" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "398abe15-587b-45ec-817b-28267fe05552" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101742Z:398abe15-587b-45ec-817b-28267fe05552" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb7d7eee-9de7-4a23-b2ef-e703aa5f5971" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:17:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cb7d7eee-9de7-4a23-b2ef-e703aa5f5971" + ], + "request-id": [ + "cb7d7eee-9de7-4a23-b2ef-e703aa5f5971" + ], + "elapsed-time": [ + "68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "9b943eb9-c54f-4d51-b0a1-e13f10289584" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101752Z:9b943eb9-c54f-4d51-b0a1-e13f10289584" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d288691c-8743-458a-889e-1aeb20a89f36" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:18:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d288691c-8743-458a-889e-1aeb20a89f36" + ], + "request-id": [ + "d288691c-8743-458a-889e-1aeb20a89f36" + ], + "elapsed-time": [ + "75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "eca1f9de-7fa6-4e56-bcdf-4723d0f12486" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101802Z:eca1f9de-7fa6-4e56-bcdf-4723d0f12486" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6a77ca2-9b19-4336-9120-d82337920077" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:18:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d6a77ca2-9b19-4336-9120-d82337920077" + ], + "request-id": [ + "d6a77ca2-9b19-4336-9120-d82337920077" + ], + "elapsed-time": [ + "76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "eb7762ad-dce3-4a74-9f57-87990d1ff9be" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101813Z:eb7762ad-dce3-4a74-9f57-87990d1ff9be" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b3a28dd-28ff-4741-a383-cb89320cebff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:18:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8b3a28dd-28ff-4741-a383-cb89320cebff" + ], + "request-id": [ + "8b3a28dd-28ff-4741-a383-cb89320cebff" + ], + "elapsed-time": [ + "77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "62cbbf29-13c2-4d08-9adf-d5ec0376919d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101823Z:62cbbf29-13c2-4d08-9adf-d5ec0376919d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15eee05a-02fe-459e-85ab-94ba7d413f72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:18:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "15eee05a-02fe-459e-85ab-94ba7d413f72" + ], + "request-id": [ + "15eee05a-02fe-459e-85ab-94ba7d413f72" + ], + "elapsed-time": [ + "71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "003a1c46-2e07-49d3-acf0-1d2571dabd04" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101833Z:003a1c46-2e07-49d3-acf0-1d2571dabd04" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e45e70a4-ed74-4077-b894-180da4b585b3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:18:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e45e70a4-ed74-4077-b894-180da4b585b3" + ], + "request-id": [ + "e45e70a4-ed74-4077-b894-180da4b585b3" + ], + "elapsed-time": [ + "153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "25c41b19-79ff-44b7-9d0b-56d7346e13c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101843Z:25c41b19-79ff-44b7-9d0b-56d7346e13c7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb777238-722e-42f4-87b1-829478ec28ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:18:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cb777238-722e-42f4-87b1-829478ec28ec" + ], + "request-id": [ + "cb777238-722e-42f4-87b1-829478ec28ec" + ], + "elapsed-time": [ + "4292" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "e2147715-e483-41ca-91c9-ee560e7d9a6a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101858Z:e2147715-e483-41ca-91c9-ee560e7d9a6a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c1ce928-651d-401f-a2e9-8a490e80d608" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:19:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c1ce928-651d-401f-a2e9-8a490e80d608" + ], + "request-id": [ + "6c1ce928-651d-401f-a2e9-8a490e80d608" + ], + "elapsed-time": [ + "2599" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "1feccf74-aa74-48e3-a5ac-02b5d25bd02b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T101910Z:1feccf74-aa74-48e3-a5ac-02b5d25bd02b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd03896-4d84-4689-8723-7fa8ee7de9e1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -215,7 +4126,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:03:42 GMT" + "Thu, 14 Dec 2017 10:19:20 GMT" ], "Pragma": [ "no-cache" @@ -224,20 +4135,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "584ceee3-d6fd-40f1-8f62-105ee575cdde" + "9fd03896-4d84-4689-8723-7fa8ee7de9e1" ], "request-id": [ - "584ceee3-d6fd-40f1-8f62-105ee575cdde" + "9fd03896-4d84-4689-8723-7fa8ee7de9e1" ], "elapsed-time": [ - "122" + "105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,29 +4157,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14909" ], "x-ms-correlation-request-id": [ - "4e2f5e8f-f729-4a34-bebd-8811b59fab49" + "7277fe05-be67-4a22-9543-a8735df1d917" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190342Z:4e2f5e8f-f729-4a34-bebd-8811b59fab49" + "CENTRALUS:20171214T101921Z:7277fe05-be67-4a22-9543-a8735df1d917" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a8362110-79ea-4285-98dd-bbbd0e5a8861" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -280,7 +4197,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:04:12 GMT" + "Thu, 14 Dec 2017 10:19:30 GMT" ], "Pragma": [ "no-cache" @@ -289,20 +4206,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c6e66e53-3536-4974-bcf9-2684cf2b40ee" + "a8362110-79ea-4285-98dd-bbbd0e5a8861" ], "request-id": [ - "c6e66e53-3536-4974-bcf9-2684cf2b40ee" + "a8362110-79ea-4285-98dd-bbbd0e5a8861" ], "elapsed-time": [ - "66" + "70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,29 +4228,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14908" ], "x-ms-correlation-request-id": [ - "44753c94-269f-4d88-81e1-0254c0217bb9" + "7ee1ffc8-bf5b-476c-9d9c-c57578b63010" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190412Z:44753c94-269f-4d88-81e1-0254c0217bb9" + "CENTRALUS:20171214T101931Z:7ee1ffc8-bf5b-476c-9d9c-c57578b63010" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4f89ee32-e407-44c3-aabf-3067d31f191d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -345,7 +4268,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:04:44 GMT" + "Thu, 14 Dec 2017 10:19:42 GMT" ], "Pragma": [ "no-cache" @@ -354,20 +4277,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "efab8abd-f3a8-4560-93d0-203d043f3f52" + "4f89ee32-e407-44c3-aabf-3067d31f191d" ], "request-id": [ - "efab8abd-f3a8-4560-93d0-203d043f3f52" + "4f89ee32-e407-44c3-aabf-3067d31f191d" ], "elapsed-time": [ - "1512" + "1745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,29 +4299,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14907" ], "x-ms-correlation-request-id": [ - "235bd28c-655b-4184-8128-f17502ae5e2e" + "354018c4-b3f3-48dd-817e-9c934b625400" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190444Z:235bd28c-655b-4184-8128-f17502ae5e2e" + "CENTRALUS:20171214T101943Z:354018c4-b3f3-48dd-817e-9c934b625400" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b0330bc9-6e45-4519-ad53-bfa85e9d0d44" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +4339,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:05:14 GMT" + "Thu, 14 Dec 2017 10:19:53 GMT" ], "Pragma": [ "no-cache" @@ -419,20 +4348,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "be30e402-4b76-4d08-947d-abfee6907988" + "b0330bc9-6e45-4519-ad53-bfa85e9d0d44" ], "request-id": [ - "be30e402-4b76-4d08-947d-abfee6907988" + "b0330bc9-6e45-4519-ad53-bfa85e9d0d44" ], "elapsed-time": [ - "81" + "306" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,29 +4370,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14906" ], "x-ms-correlation-request-id": [ - "3c7e1183-a041-421a-b983-6ca00a7881f8" + "24404f16-6268-4c4b-af3e-a84ad7df2e8a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190514Z:3c7e1183-a041-421a-b983-6ca00a7881f8" + "CENTRALUS:20171214T101953Z:24404f16-6268-4c4b-af3e-a84ad7df2e8a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cf20a846-a306-4195-a479-4cb52893da71" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -475,7 +4410,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:05:44 GMT" + "Thu, 14 Dec 2017 10:20:02 GMT" ], "Pragma": [ "no-cache" @@ -484,20 +4419,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9048b588-27ac-4170-b100-a61e51559307" + "cf20a846-a306-4195-a479-4cb52893da71" ], "request-id": [ - "9048b588-27ac-4170-b100-a61e51559307" + "cf20a846-a306-4195-a479-4cb52893da71" ], "elapsed-time": [ - "468" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -506,29 +4441,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14905" ], "x-ms-correlation-request-id": [ - "c01e0d36-e57d-4e53-863f-2354e8317a4c" + "c0d6c7dd-2bfc-49d8-89c5-2f0957c43779" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190545Z:c01e0d36-e57d-4e53-863f-2354e8317a4c" + "CENTRALUS:20171214T102003Z:c0d6c7dd-2bfc-49d8-89c5-2f0957c43779" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "effca363-f600-4829-8a21-324a9ccd79c6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -540,7 +4481,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:06:14 GMT" + "Thu, 14 Dec 2017 10:20:13 GMT" ], "Pragma": [ "no-cache" @@ -549,20 +4490,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f55d3427-d207-465e-a414-5d84ba43b7f0" + "effca363-f600-4829-8a21-324a9ccd79c6" ], "request-id": [ - "f55d3427-d207-465e-a414-5d84ba43b7f0" + "effca363-f600-4829-8a21-324a9ccd79c6" ], "elapsed-time": [ - "64" + "86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -571,29 +4512,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14904" ], "x-ms-correlation-request-id": [ - "6a9883b1-f067-4304-ac0f-a853d9dbd0ec" + "f57ed72e-b2d8-4f6c-8042-cf243389b25b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190615Z:6a9883b1-f067-4304-ac0f-a853d9dbd0ec" + "CENTRALUS:20171214T102013Z:f57ed72e-b2d8-4f6c-8042-cf243389b25b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "79d476d9-dcf1-4795-bb53-a418f7ad790b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -605,7 +4552,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:06:44 GMT" + "Thu, 14 Dec 2017 10:20:23 GMT" ], "Pragma": [ "no-cache" @@ -614,20 +4561,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1be191d0-f807-4b8f-8d5b-6cf535193c41" + "79d476d9-dcf1-4795-bb53-a418f7ad790b" ], "request-id": [ - "1be191d0-f807-4b8f-8d5b-6cf535193c41" + "79d476d9-dcf1-4795-bb53-a418f7ad790b" ], "elapsed-time": [ - "174" + "63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -636,29 +4583,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14903" ], "x-ms-correlation-request-id": [ - "85eb41db-5a52-42d9-81f7-039b8f9e0f0d" + "76a68c57-5004-42ca-972b-70f593672457" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190645Z:85eb41db-5a52-42d9-81f7-039b8f9e0f0d" + "CENTRALUS:20171214T102024Z:76a68c57-5004-42ca-972b-70f593672457" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "062da9dd-f26c-473a-a341-b53b99746782" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -670,7 +4623,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:07:15 GMT" + "Thu, 14 Dec 2017 10:20:34 GMT" ], "Pragma": [ "no-cache" @@ -679,20 +4632,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "82794c33-7a08-40e7-bbe1-67da07fcaa14" + "062da9dd-f26c-473a-a341-b53b99746782" ], "request-id": [ - "82794c33-7a08-40e7-bbe1-67da07fcaa14" + "062da9dd-f26c-473a-a341-b53b99746782" ], "elapsed-time": [ - "241" + "93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -701,29 +4654,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14902" ], "x-ms-correlation-request-id": [ - "e61a29a4-925c-4fc8-a4ab-695946f01624" + "c4abe5bb-d427-410f-b870-55201ec9d06f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190716Z:e61a29a4-925c-4fc8-a4ab-695946f01624" + "CENTRALUS:20171214T102034Z:c4abe5bb-d427-410f-b870-55201ec9d06f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f665dc77-d3ea-4e2f-8a03-c890d4f3f919" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -735,7 +4694,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:07:45 GMT" + "Thu, 14 Dec 2017 10:20:44 GMT" ], "Pragma": [ "no-cache" @@ -744,20 +4703,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f5c825c8-a5d1-423a-b981-93d921a40579" + "f665dc77-d3ea-4e2f-8a03-c890d4f3f919" ], "request-id": [ - "f5c825c8-a5d1-423a-b981-93d921a40579" + "f665dc77-d3ea-4e2f-8a03-c890d4f3f919" ], "elapsed-time": [ - "254" + "494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -766,29 +4725,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14901" ], "x-ms-correlation-request-id": [ - "fec3acaf-ffcd-4477-a013-e473fe116742" + "52d8fefc-fd72-4d67-acb4-dfcf15493bfd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190746Z:fec3acaf-ffcd-4477-a013-e473fe116742" + "CENTRALUS:20171214T102045Z:52d8fefc-fd72-4d67-acb4-dfcf15493bfd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cf06fb8c-5c38-4a58-a372-dd3ff48910ce" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -800,7 +4765,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:08:16 GMT" + "Thu, 14 Dec 2017 10:20:54 GMT" ], "Pragma": [ "no-cache" @@ -809,20 +4774,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "562c78e0-bdab-4b6d-94c8-c6abf9d3a661" + "cf06fb8c-5c38-4a58-a372-dd3ff48910ce" ], "request-id": [ - "562c78e0-bdab-4b6d-94c8-c6abf9d3a661" + "cf06fb8c-5c38-4a58-a372-dd3ff48910ce" ], "elapsed-time": [ - "86" + "57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,29 +4796,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14900" ], "x-ms-correlation-request-id": [ - "d972543a-dfcf-487a-a76d-502780975fa2" + "8ae5b5fd-7a20-45af-ac47-6e0f5f23eb68" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190816Z:d972543a-dfcf-487a-a76d-502780975fa2" + "CENTRALUS:20171214T102055Z:8ae5b5fd-7a20-45af-ac47-6e0f5f23eb68" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bf19d250-3e2f-4844-a11d-140e7ef8b06e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -865,7 +4836,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:08:46 GMT" + "Thu, 14 Dec 2017 10:21:05 GMT" ], "Pragma": [ "no-cache" @@ -874,20 +4845,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6141bb72-5adc-40b3-9331-0be561cc305d" + "bf19d250-3e2f-4844-a11d-140e7ef8b06e" ], "request-id": [ - "6141bb72-5adc-40b3-9331-0be561cc305d" + "bf19d250-3e2f-4844-a11d-140e7ef8b06e" ], "elapsed-time": [ - "290" + "105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -896,29 +4867,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14899" ], "x-ms-correlation-request-id": [ - "d45dadb8-5613-4de1-96e0-b01656ee190a" + "b936fb15-d35a-47f9-a3a3-8f3337dc18c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190847Z:d45dadb8-5613-4de1-96e0-b01656ee190a" + "CENTRALUS:20171214T102105Z:b936fb15-d35a-47f9-a3a3-8f3337dc18c9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a543f7d5-5541-4dd7-98cf-8ea00930375c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -930,7 +4907,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:09:20 GMT" + "Thu, 14 Dec 2017 10:21:15 GMT" ], "Pragma": [ "no-cache" @@ -939,20 +4916,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "723f44c8-347b-4dfa-9a12-692c556152b0" + "a543f7d5-5541-4dd7-98cf-8ea00930375c" ], "request-id": [ - "723f44c8-347b-4dfa-9a12-692c556152b0" + "a543f7d5-5541-4dd7-98cf-8ea00930375c" ], "elapsed-time": [ - "2765" + "71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -961,29 +4938,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14898" ], "x-ms-correlation-request-id": [ - "1fc3aef6-bf69-4216-94c5-a3acda1dd05e" + "0271367c-3b66-4dff-84ef-9466626f1be0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190920Z:1fc3aef6-bf69-4216-94c5-a3acda1dd05e" + "CENTRALUS:20171214T102115Z:0271367c-3b66-4dff-84ef-9466626f1be0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8503e7b8-4e19-4ff1-8be4-8026d2894186" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -995,7 +4978,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:09:49 GMT" + "Thu, 14 Dec 2017 10:21:25 GMT" ], "Pragma": [ "no-cache" @@ -1004,20 +4987,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2ba01c2d-ab8d-4f44-8400-37d5a0cd78cb" + "8503e7b8-4e19-4ff1-8be4-8026d2894186" ], "request-id": [ - "2ba01c2d-ab8d-4f44-8400-37d5a0cd78cb" + "8503e7b8-4e19-4ff1-8be4-8026d2894186" ], "elapsed-time": [ - "269" + "70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1026,29 +5009,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14897" ], "x-ms-correlation-request-id": [ - "34bca12b-199f-4095-b8d6-904e121bc1e7" + "06e59962-ab2d-4603-9a35-0f105212639a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T190950Z:34bca12b-199f-4095-b8d6-904e121bc1e7" + "CENTRALUS:20171214T102125Z:06e59962-ab2d-4603-9a35-0f105212639a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "398ce8ad-71b2-4991-9eba-da1b73c77c7a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1060,7 +5049,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:10:21 GMT" + "Thu, 14 Dec 2017 10:21:39 GMT" ], "Pragma": [ "no-cache" @@ -1069,20 +5058,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "166a40c1-5020-4548-915b-c639eec6caab" + "398ce8ad-71b2-4991-9eba-da1b73c77c7a" ], "request-id": [ - "166a40c1-5020-4548-915b-c639eec6caab" + "398ce8ad-71b2-4991-9eba-da1b73c77c7a" ], "elapsed-time": [ - "191" + "83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1091,29 +5080,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14896" ], "x-ms-correlation-request-id": [ - "fbf1b82b-a6a2-4292-8c3c-8ff9a3e07f5f" + "8398fea2-35a0-43f1-90f6-a80bf2eee398" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191021Z:fbf1b82b-a6a2-4292-8c3c-8ff9a3e07f5f" + "CENTRALUS:20171214T102139Z:8398fea2-35a0-43f1-90f6-a80bf2eee398" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4be5c39b-0c4d-4c60-a59d-c81bf1d9a9bd" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1125,7 +5120,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:10:50 GMT" + "Thu, 14 Dec 2017 10:21:48 GMT" ], "Pragma": [ "no-cache" @@ -1134,20 +5129,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "bb36331d-1a86-4e14-b15e-24676bb4039b" + "4be5c39b-0c4d-4c60-a59d-c81bf1d9a9bd" ], "request-id": [ - "bb36331d-1a86-4e14-b15e-24676bb4039b" + "4be5c39b-0c4d-4c60-a59d-c81bf1d9a9bd" ], "elapsed-time": [ - "74" + "53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,29 +5151,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14895" ], "x-ms-correlation-request-id": [ - "ea2dbb48-fae2-49c9-8eaa-40a753970b5e" + "1e5413e1-f8ca-40fe-96cb-6ecb5e28922a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191051Z:ea2dbb48-fae2-49c9-8eaa-40a753970b5e" + "CENTRALUS:20171214T102149Z:1e5413e1-f8ca-40fe-96cb-6ecb5e28922a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "16168ebb-da0f-40a0-a8ba-598c7592bc22" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1190,7 +5191,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:11:21 GMT" + "Thu, 14 Dec 2017 10:21:59 GMT" ], "Pragma": [ "no-cache" @@ -1199,20 +5200,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "41daef75-5e40-46d6-8f3c-b12852cbd45c" + "16168ebb-da0f-40a0-a8ba-598c7592bc22" ], "request-id": [ - "41daef75-5e40-46d6-8f3c-b12852cbd45c" + "16168ebb-da0f-40a0-a8ba-598c7592bc22" ], "elapsed-time": [ - "59" + "126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,29 +5222,106 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14894" + ], + "x-ms-correlation-request-id": [ + "cc4cf448-a664-419e-a4a7-05fc543db5cb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T102159Z:cc4cf448-a664-419e-a4a7-05fc543db5cb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "430111de-5cb9-450c-a8ea-5a68efb03368" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:22:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "430111de-5cb9-450c-a8ea-5a68efb03368" + ], + "request-id": [ + "430111de-5cb9-450c-a8ea-5a68efb03368" + ], + "elapsed-time": [ + "181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" ], "x-ms-correlation-request-id": [ - "a716139d-8cca-4d42-9be4-0e0131674f4a" + "62e902fa-59a0-45a5-ba22-9ebf78d7c98e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191121Z:a716139d-8cca-4d42-9be4-0e0131674f4a" + "CENTRALUS:20171214T102209Z:62e902fa-59a0-45a5-ba22-9ebf78d7c98e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c63a3f06-0b2d-43f9-8188-26b25374b16e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1255,7 +5333,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:11:51 GMT" + "Thu, 14 Dec 2017 10:22:23 GMT" ], "Pragma": [ "no-cache" @@ -1264,20 +5342,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "615c6203-a64e-44fc-898f-bd09abc79595" + "c63a3f06-0b2d-43f9-8188-26b25374b16e" ], "request-id": [ - "615c6203-a64e-44fc-898f-bd09abc79595" + "c63a3f06-0b2d-43f9-8188-26b25374b16e" ], "elapsed-time": [ - "100" + "130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1286,29 +5364,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14892" ], "x-ms-correlation-request-id": [ - "c25be26c-8dc0-4ad8-b1af-4faecac15410" + "f87d9888-ce64-4d66-a6ec-b55a51e44aac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191151Z:c25be26c-8dc0-4ad8-b1af-4faecac15410" + "CENTRALUS:20171214T102223Z:f87d9888-ce64-4d66-a6ec-b55a51e44aac" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ca8d54e0-81aa-495e-b739-0c729bfd85aa" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1320,7 +5404,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:12:21 GMT" + "Thu, 14 Dec 2017 10:22:32 GMT" ], "Pragma": [ "no-cache" @@ -1329,20 +5413,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6aeb6b96-37a8-4cfa-8840-e7f9675d9506" + "ca8d54e0-81aa-495e-b739-0c729bfd85aa" ], "request-id": [ - "6aeb6b96-37a8-4cfa-8840-e7f9675d9506" + "ca8d54e0-81aa-495e-b739-0c729bfd85aa" ], "elapsed-time": [ - "124" + "68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1351,29 +5435,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14891" ], "x-ms-correlation-request-id": [ - "a45ee65e-5980-4d43-a638-4875a7fe495a" + "07667540-4aeb-41e6-9ae8-0e58bea882f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191221Z:a45ee65e-5980-4d43-a638-4875a7fe495a" + "CENTRALUS:20171214T102233Z:07667540-4aeb-41e6-9ae8-0e58bea882f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "49a6820b-b6f2-4ff6-bdf6-5dc56ba212da" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1385,7 +5475,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:12:51 GMT" + "Thu, 14 Dec 2017 10:22:42 GMT" ], "Pragma": [ "no-cache" @@ -1394,20 +5484,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "21d0f1fc-a131-4bff-aacc-d1dd7b860ff6" + "49a6820b-b6f2-4ff6-bdf6-5dc56ba212da" ], "request-id": [ - "21d0f1fc-a131-4bff-aacc-d1dd7b860ff6" + "49a6820b-b6f2-4ff6-bdf6-5dc56ba212da" ], "elapsed-time": [ - "66" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1416,29 +5506,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14890" ], "x-ms-correlation-request-id": [ - "7be901a5-91b4-43e5-b831-c9f38020b06a" + "e97d9b6d-054c-4bf3-aa24-b7ba797e0f12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191252Z:7be901a5-91b4-43e5-b831-c9f38020b06a" + "CENTRALUS:20171214T102243Z:e97d9b6d-054c-4bf3-aa24-b7ba797e0f12" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6f19f99a-45b8-401e-bdac-1790b3432df1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1450,7 +5546,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:13:21 GMT" + "Thu, 14 Dec 2017 10:22:55 GMT" ], "Pragma": [ "no-cache" @@ -1459,20 +5555,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "fdbb604c-74bf-46ec-98fc-45e83fbf54e3" + "6f19f99a-45b8-401e-bdac-1790b3432df1" ], "request-id": [ - "fdbb604c-74bf-46ec-98fc-45e83fbf54e3" + "6f19f99a-45b8-401e-bdac-1790b3432df1" ], "elapsed-time": [ - "72" + "57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1481,29 +5577,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14889" ], "x-ms-correlation-request-id": [ - "65190965-0617-45aa-baf4-c2ccefe223d0" + "f0f2e9d7-2769-44fa-b0ee-cb878cb5d074" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191322Z:65190965-0617-45aa-baf4-c2ccefe223d0" + "CENTRALUS:20171214T102256Z:f0f2e9d7-2769-44fa-b0ee-cb878cb5d074" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2c0fe16e-9ec4-4869-bed8-bf6db6068fc8" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1515,7 +5617,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:13:52 GMT" + "Thu, 14 Dec 2017 10:23:06 GMT" ], "Pragma": [ "no-cache" @@ -1524,20 +5626,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6c07dc52-7af7-4605-840d-63d03a128e5d" + "2c0fe16e-9ec4-4869-bed8-bf6db6068fc8" ], "request-id": [ - "6c07dc52-7af7-4605-840d-63d03a128e5d" + "2c0fe16e-9ec4-4869-bed8-bf6db6068fc8" ], "elapsed-time": [ - "99" + "252" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,29 +5648,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14888" ], "x-ms-correlation-request-id": [ - "86ff0c19-8fe0-49a7-be03-146becc9fc5a" + "bd251927-e144-4482-9f04-a0872235ee8b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191352Z:86ff0c19-8fe0-49a7-be03-146becc9fc5a" + "CENTRALUS:20171214T102306Z:bd251927-e144-4482-9f04-a0872235ee8b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c7699bbc-8237-4be4-bbf6-1d6bc8eb9fca" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1580,7 +5688,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:14:22 GMT" + "Thu, 14 Dec 2017 10:23:16 GMT" ], "Pragma": [ "no-cache" @@ -1589,20 +5697,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "40f7a75b-3564-4f5e-ae90-0e42956818c2" + "c7699bbc-8237-4be4-bbf6-1d6bc8eb9fca" ], "request-id": [ - "40f7a75b-3564-4f5e-ae90-0e42956818c2" + "c7699bbc-8237-4be4-bbf6-1d6bc8eb9fca" ], "elapsed-time": [ - "75" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,29 +5719,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14887" ], "x-ms-correlation-request-id": [ - "1fe0b02f-6d0a-4d20-b066-b08f62cd4288" + "2f1f4632-0a27-4e23-9198-f5d7a3dae27e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191422Z:1fe0b02f-6d0a-4d20-b066-b08f62cd4288" + "CENTRALUS:20171214T102317Z:2f1f4632-0a27-4e23-9198-f5d7a3dae27e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7ddd2080-9565-4be0-ba27-299ef1894671" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1645,7 +5759,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:14:52 GMT" + "Thu, 14 Dec 2017 10:23:26 GMT" ], "Pragma": [ "no-cache" @@ -1654,20 +5768,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a92f585c-bb70-48d9-9fff-577ee12179ce" + "7ddd2080-9565-4be0-ba27-299ef1894671" ], "request-id": [ - "a92f585c-bb70-48d9-9fff-577ee12179ce" + "7ddd2080-9565-4be0-ba27-299ef1894671" ], "elapsed-time": [ - "79" + "81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1676,29 +5790,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14886" ], "x-ms-correlation-request-id": [ - "9b3cb25f-7147-49f5-9349-47045e020944" + "2674fb4b-2636-43f1-9732-329b345ab50a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191452Z:9b3cb25f-7147-49f5-9349-47045e020944" + "CENTRALUS:20171214T102327Z:2674fb4b-2636-43f1-9732-329b345ab50a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5d5a53c0-fa5a-4943-a9ab-e8d7ce7949aa" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1710,7 +5830,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:15:23 GMT" + "Thu, 14 Dec 2017 10:23:37 GMT" ], "Pragma": [ "no-cache" @@ -1719,20 +5839,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "04070def-edbd-4df9-a564-8da53c6c2477" + "5d5a53c0-fa5a-4943-a9ab-e8d7ce7949aa" ], "request-id": [ - "04070def-edbd-4df9-a564-8da53c6c2477" + "5d5a53c0-fa5a-4943-a9ab-e8d7ce7949aa" ], "elapsed-time": [ - "65" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,29 +5861,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14885" ], "x-ms-correlation-request-id": [ - "6b62bf0c-9297-4b97-91b3-3fecaad9c122" + "b1c5fb8c-7da5-4d80-91b3-ab404bc8ad87" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191523Z:6b62bf0c-9297-4b97-91b3-3fecaad9c122" + "CENTRALUS:20171214T102337Z:b1c5fb8c-7da5-4d80-91b3-ab404bc8ad87" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "506b56fa-d61e-4dc1-b2f1-57673b15efef" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1775,7 +5901,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:15:52 GMT" + "Thu, 14 Dec 2017 10:23:46 GMT" ], "Pragma": [ "no-cache" @@ -1784,20 +5910,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2f469cb2-4ebd-44f6-85e4-9f1936b77cc3" + "506b56fa-d61e-4dc1-b2f1-57673b15efef" ], "request-id": [ - "2f469cb2-4ebd-44f6-85e4-9f1936b77cc3" + "506b56fa-d61e-4dc1-b2f1-57673b15efef" ], "elapsed-time": [ - "139" + "85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1806,29 +5932,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14884" ], "x-ms-correlation-request-id": [ - "70e7d6c7-8f46-421b-b1fd-9fe568e6d250" + "a29c0e58-bf7f-463c-b7ad-fecdcb4416db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191553Z:70e7d6c7-8f46-421b-b1fd-9fe568e6d250" + "CENTRALUS:20171214T102347Z:a29c0e58-bf7f-463c-b7ad-fecdcb4416db" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5b410cff-d9f9-41f2-8f26-e933f92c5ad0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1840,7 +5972,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:16:22 GMT" + "Thu, 14 Dec 2017 10:23:57 GMT" ], "Pragma": [ "no-cache" @@ -1849,20 +5981,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7fdda531-80f5-4084-b386-6b7ea516e18a" + "5b410cff-d9f9-41f2-8f26-e933f92c5ad0" ], "request-id": [ - "7fdda531-80f5-4084-b386-6b7ea516e18a" + "5b410cff-d9f9-41f2-8f26-e933f92c5ad0" ], "elapsed-time": [ - "89" + "55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1871,29 +6003,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14883" ], "x-ms-correlation-request-id": [ - "dcf6e583-03d2-4264-a1ea-1605091cfa9e" + "8dd1edf7-4ffe-4341-b3ab-5ce5737898e9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191623Z:dcf6e583-03d2-4264-a1ea-1605091cfa9e" + "CENTRALUS:20171214T102357Z:8dd1edf7-4ffe-4341-b3ab-5ce5737898e9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b2e1ef9b-fb9e-4dcc-bac0-fea5bbd95900" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583\",\"name\":\"azs-4583\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664\",\"name\":\"azs-5664\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"default\"},\"sku\":{\"name\":\"standard3\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1905,7 +6043,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:16:53 GMT" + "Thu, 14 Dec 2017 10:24:07 GMT" ], "Pragma": [ "no-cache" @@ -1914,20 +6052,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T19%3A03%3A12.1615861Z'\"" + "W/\"datetime'2017-12-14T10%3A09%3A29.562398Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "95f93f24-8579-4d9f-bf38-31f948d38254" + "b2e1ef9b-fb9e-4dcc-bac0-fea5bbd95900" ], "request-id": [ - "95f93f24-8579-4d9f-bf38-31f948d38254" + "b2e1ef9b-fb9e-4dcc-bac0-fea5bbd95900" ], "elapsed-time": [ - "212" + "310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1936,25 +6074,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14882" ], "x-ms-correlation-request-id": [ - "9d784d2d-87c3-43b1-83f9-44b3fbc9e840" + "2002a6bb-f93c-4db8-bfd3-d6620eb210fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191654Z:9d784d2d-87c3-43b1-83f9-44b3fbc9e840" + "CENTRALUS:20171214T102408Z:2002a6bb-f93c-4db8-bfd3-d6620eb210fc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7996/providers/Microsoft.Search/searchServices/azs-4583?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3OTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NTgzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2173/providers/Microsoft.Search/searchServices/azs-5664?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMTczL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01NjY0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59cc280b-d289-4c84-8e51-a1411cfa1b64" + "6777a447-7bce-47f4-a21c-3b20bcbf8097" ], "accept-language": [ "en-US" @@ -1976,19 +6114,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 19:16:55 GMT" + "Thu, 14 Dec 2017 10:24:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "59cc280b-d289-4c84-8e51-a1411cfa1b64" + "6777a447-7bce-47f4-a21c-3b20bcbf8097" ], "request-id": [ - "59cc280b-d289-4c84-8e51-a1411cfa1b64" + "6777a447-7bce-47f4-a21c-3b20bcbf8097" ], "elapsed-time": [ - "1618" + "9095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1997,13 +6135,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1183" ], "x-ms-correlation-request-id": [ - "f2eb81e5-8c25-413d-81b1-ee5793cc2d1a" + "57cf7239-188d-4ea7-bc90-21297fd8e53f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T191656Z:f2eb81e5-8c25-413d-81b1-ee5793cc2d1a" + "CENTRALUS:20171214T102418Z:57cf7239-188d-4ea7-bc90-21297fd8e53f" ] }, "StatusCode": 200 @@ -2011,10 +6149,10 @@ ], "Names": { "GenerateName": [ - "azsmnet7996" + "azsmnet2173" ], "GenerateServiceName": [ - "azs-4583" + "azs-5664" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json index 64cd7c0e70233..0ef2da8f3eb71 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanCreateStandardService.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da80b085-dc54-42b3-864c-f5b37434c5d2" + "209c16ee-0496-4fab-a313-4bf55a1cf3d6" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:20 GMT" + "Thu, 14 Dec 2017 11:03:55 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1115" + "1135" ], "x-ms-request-id": [ - "1730fabf-5691-43b0-b70a-309763773622" + "5e68d67b-5348-464e-9726-5e37fa827f3e" ], "x-ms-correlation-request-id": [ - "1730fabf-5691-43b0-b70a-309763773622" + "5e68d67b-5348-464e-9726-5e37fa827f3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063720Z:1730fabf-5691-43b0-b70a-309763773622" + "CENTRALUS:20171214T110355Z:5e68d67b-5348-464e-9726-5e37fa827f3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8870?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5803?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1ODAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "8db706f1-c0b3-4059-9eeb-14da1893f2c7" + "aa429f39-eda0-435d-9e57-00c86cd9f978" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870\",\r\n \"name\": \"azsmnet8870\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5803\",\r\n \"name\": \"azsmnet5803\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:20 GMT" + "Thu, 14 Dec 2017 11:03:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1114" + "1134" ], "x-ms-request-id": [ - "19c3798f-a9e7-4b06-b73f-c127ba7f328a" + "bbd34012-3f90-4fd7-b1a6-799a56067888" ], "x-ms-correlation-request-id": [ - "19c3798f-a9e7-4b06-b73f-c127ba7f328a" + "bbd34012-3f90-4fd7-b1a6-799a56067888" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063720Z:19c3798f-a9e7-4b06-b73f-c127ba7f328a" + "CENTRALUS:20171214T110356Z:bbd34012-3f90-4fd7-b1a6-799a56067888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870/providers/Microsoft.Search/searchServices/azs-4827?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODI3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5803/providers/Microsoft.Search/searchServices/azs-2049?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "145" ], "x-ms-client-request-id": [ - "b7f65907-a1cc-4b91-af67-19f54ea81186" + "a60e9810-6928-4e3b-9be0-ed966118a69f" ], "accept-language": [ "en-US" @@ -142,7 +142,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870/providers/Microsoft.Search/searchServices/azs-4827\",\"name\":\"azs-4827\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5803/providers/Microsoft.Search/searchServices/azs-2049\",\"name\":\"azs-2049\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Length": [ "389" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:25 GMT" + "Thu, 14 Dec 2017 11:04:01 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A37%3A25.3048834Z'\"" + "W/\"datetime'2017-12-14T11%3A04%3A01.9110243Z'\"" ], "x-ms-request-id": [ - "b7f65907-a1cc-4b91-af67-19f54ea81186" + "a60e9810-6928-4e3b-9be0-ed966118a69f" ], "request-id": [ - "b7f65907-a1cc-4b91-af67-19f54ea81186" + "a60e9810-6928-4e3b-9be0-ed966118a69f" ], "elapsed-time": [ - "3697" + "4663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1113" + "1133" ], "x-ms-correlation-request-id": [ - "ac987cca-c207-48f8-833d-031be58a6afc" + "63d76f43-0082-4c3d-a613-ea613790819b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063725Z:ac987cca-c207-48f8-833d-031be58a6afc" + "CENTRALUS:20171214T110402Z:63d76f43-0082-4c3d-a613-ea613790819b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8870/providers/Microsoft.Search/searchServices/azs-4827?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4ODcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00ODI3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5803/providers/Microsoft.Search/searchServices/azs-2049?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1ODAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2de484b-b1bf-440a-b83a-ce1ce22b36bd" + "73ece873-5bf9-49b3-841e-16fee9b97bbf" ], "accept-language": [ "en-US" @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:29 GMT" + "Thu, 14 Dec 2017 11:04:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b2de484b-b1bf-440a-b83a-ce1ce22b36bd" + "73ece873-5bf9-49b3-841e-16fee9b97bbf" ], "request-id": [ - "b2de484b-b1bf-440a-b83a-ce1ce22b36bd" + "73ece873-5bf9-49b3-841e-16fee9b97bbf" ], "elapsed-time": [ - "700" + "603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,13 +242,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1112" + "1132" ], "x-ms-correlation-request-id": [ - "ecbdd6e5-ec45-4c81-a168-e8cd635b1f04" + "0481ebd3-1470-44a4-b787-28a9cd34ec90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063729Z:ecbdd6e5-ec45-4c81-a168-e8cd635b1f04" + "CENTRALUS:20171214T110403Z:0481ebd3-1470-44a4-b787-28a9cd34ec90" ] }, "StatusCode": 200 @@ -256,10 +256,10 @@ ], "Names": { "GenerateName": [ - "azsmnet8870" + "azsmnet5803" ], "GenerateServiceName": [ - "azs-4827" + "azs-2049" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json index 9a4e3605b29e4..fd63eee2b20a2 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanListServices.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b068cf2-5e29-474b-bcbf-137ac147c307" + "db95e635-14c4-4908-a27f-46cffe2f6bee" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:34 GMT" + "Thu, 14 Dec 2017 10:24:22 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1149" + "1177" ], "x-ms-request-id": [ - "a1022b81-fbf5-4647-a0d4-ad0557ddc990" + "6f51b693-1a19-4f67-9949-c76143a40476" ], "x-ms-correlation-request-id": [ - "a1022b81-fbf5-4647-a0d4-ad0557ddc990" + "6f51b693-1a19-4f67-9949-c76143a40476" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055634Z:a1022b81-fbf5-4647-a0d4-ad0557ddc990" + "CENTRALUS:20171214T102422Z:6f51b693-1a19-4f67-9949-c76143a40476" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet4538?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0NTM4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3841?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzODQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "898ddd00-89d0-4ded-bc99-9d260abe92c0" + "80e67d7c-4b86-41b9-bd77-fa0ef9a0e906" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538\",\r\n \"name\": \"azsmnet4538\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841\",\r\n \"name\": \"azsmnet3841\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:34 GMT" + "Thu, 14 Dec 2017 10:24:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1148" + "1176" ], "x-ms-request-id": [ - "6326de63-4b34-4dc0-b63e-68060c334afd" + "3b148a85-49bd-4281-bc8e-1d2a191eafcc" ], "x-ms-correlation-request-id": [ - "6326de63-4b34-4dc0-b63e-68060c334afd" + "3b148a85-49bd-4281-bc8e-1d2a191eafcc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055634Z:6326de63-4b34-4dc0-b63e-68060c334afd" + "CENTRALUS:20171214T102422Z:3b148a85-49bd-4281-bc8e-1d2a191eafcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-4726?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy00NzI2P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices/azs-917?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05MTc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "141" ], "x-ms-client-request-id": [ - "ea440bba-36d4-4715-8a5f-17cdc7ca00f7" + "5a18db4c-2fa5-488a-8ca9-65ae9887bc57" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-4726\",\"name\":\"azs-4726\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices/azs-917\",\"name\":\"azs-917\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ - "385" + "383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:36 GMT" + "Thu, 14 Dec 2017 10:24:24 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A36.543195Z'\"" + "W/\"datetime'2017-12-14T10%3A24%3A24.7631112Z'\"" ], "x-ms-request-id": [ - "ea440bba-36d4-4715-8a5f-17cdc7ca00f7" + "5a18db4c-2fa5-488a-8ca9-65ae9887bc57" ], "request-id": [ - "ea440bba-36d4-4715-8a5f-17cdc7ca00f7" + "5a18db4c-2fa5-488a-8ca9-65ae9887bc57" ], "elapsed-time": [ - "1057" + "1060" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,20 +181,20 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1147" + "1175" ], "x-ms-correlation-request-id": [ - "bd72d2bc-fa5e-4bf3-a14c-cb752e0f36e2" + "3e083569-b7bc-4de3-bf8a-2bca985bcf41" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055636Z:bd72d2bc-fa5e-4bf3-a14c-cb752e0f36e2" + "CENTRALUS:20171214T102424Z:3e083569-b7bc-4de3-bf8a-2bca985bcf41" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-6302?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MzAyP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices/azs-5063?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy01MDYzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -205,7 +205,7 @@ "141" ], "x-ms-client-request-id": [ - "f9832421-00e3-4c6a-8602-680aa1fd95d0" + "86c3f7b6-b3ae-46bb-8581-a0ef2460e11f" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-6302\",\"name\":\"azs-6302\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices/azs-5063\",\"name\":\"azs-5063\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ "385" @@ -230,22 +230,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:38 GMT" + "Thu, 14 Dec 2017 10:24:26 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A37.864466Z'\"" + "W/\"datetime'2017-12-14T10%3A24%3A25.906209Z'\"" ], "x-ms-request-id": [ - "f9832421-00e3-4c6a-8602-680aa1fd95d0" + "86c3f7b6-b3ae-46bb-8581-a0ef2460e11f" ], "request-id": [ - "f9832421-00e3-4c6a-8602-680aa1fd95d0" + "86c3f7b6-b3ae-46bb-8581-a0ef2460e11f" ], "elapsed-time": [ - "1221" + "881" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -254,25 +254,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1146" + "1174" ], "x-ms-correlation-request-id": [ - "ace901e0-d012-475c-8ec0-d5a00986fed1" + "ba466276-a28d-4c75-a224-28bbe6a74590" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055638Z:ace901e0-d012-475c-8ec0-d5a00986fed1" + "CENTRALUS:20171214T102426Z:ba466276-a28d-4c75-a224-28bbe6a74590" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0NTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4447500-4635-4de2-89e0-4d61e7e414ce" + "8f68b680-9caf-4cb4-8363-eefbe6a516a3" ], "accept-language": [ "en-US" @@ -282,7 +282,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"value\":[{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-4726\",\"name\":\"azs-4726\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-12-13T05%3A56%3A36.543195Z'\\\"\"},\"sku\":{\"name\":\"free\"}},{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet4538/providers/Microsoft.Search/searchServices/azs-6302\",\"name\":\"azs-6302\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-12-13T05%3A56%3A37.864466Z'\\\"\"},\"sku\":{\"name\":\"free\"}}],\"nextLink\":null}", + "ResponseBody": "{\"value\":[{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices/azs-5063\",\"name\":\"azs-5063\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-12-14T10%3A24%3A25.906209Z'\\\"\"},\"sku\":{\"name\":\"free\"}},{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3841/providers/Microsoft.Search/searchServices/azs-917\",\"name\":\"azs-917\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\",\"ETag\":\"W/\\\"datetime'2017-12-14T10%3A24%3A24.7631112Z'\\\"\"},\"sku\":{\"name\":\"free\"}}],\"nextLink\":null}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -294,7 +294,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:38 GMT" + "Thu, 14 Dec 2017 10:24:26 GMT" ], "Pragma": [ "no-cache" @@ -307,13 +307,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a4447500-4635-4de2-89e0-4d61e7e414ce" + "8f68b680-9caf-4cb4-8363-eefbe6a516a3" ], "request-id": [ - "a4447500-4635-4de2-89e0-4d61e7e414ce" + "8f68b680-9caf-4cb4-8363-eefbe6a516a3" ], "elapsed-time": [ - "264" + "222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,13 +322,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14881" ], "x-ms-correlation-request-id": [ - "9a14e7e5-30c9-4980-9318-7a57f7c6b705" + "413a6fd4-719b-41d3-b132-29a9b64f0aac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055638Z:9a14e7e5-30c9-4980-9318-7a57f7c6b705" + "CENTRALUS:20171214T102426Z:413a6fd4-719b-41d3-b132-29a9b64f0aac" ] }, "StatusCode": 200 @@ -336,11 +336,11 @@ ], "Names": { "GenerateName": [ - "azsmnet4538" + "azsmnet3841" ], "GenerateServiceName": [ - "azs-4726", - "azs-6302" + "azs-917", + "azs-5063" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json index f891c3eb6ceea..056372e35236f 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanScaleServiceUpAndDown.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c13b3363-c88d-442c-8a62-03f69ec4c34a" + "d77bbb9f-bfa9-4cd6-b6b4-9feb9891a9cd" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:54 GMT" + "Thu, 14 Dec 2017 22:29:38 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1131" + "1199" ], "x-ms-request-id": [ - "6be46671-5405-4a99-ba0e-65e0be926bb6" + "27c7aebb-90fc-4ee6-8b5a-9f652f82341c" ], "x-ms-correlation-request-id": [ - "6be46671-5405-4a99-ba0e-65e0be926bb6" + "27c7aebb-90fc-4ee6-8b5a-9f652f82341c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055655Z:6be46671-5405-4a99-ba0e-65e0be926bb6" + "CENTRALUS:20171214T222938Z:27c7aebb-90fc-4ee6-8b5a-9f652f82341c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2306?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2309?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzA5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "0530c935-e649-4a52-8e11-89bddb3243a8" + "0cae11ee-8877-4da5-a08d-15dd095a25e8" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306\",\r\n \"name\": \"azsmnet2306\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309\",\r\n \"name\": \"azsmnet2309\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:54 GMT" + "Thu, 14 Dec 2017 22:29:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1130" + "1198" ], "x-ms-request-id": [ - "83113c72-1c17-4d98-a055-90d8f9fde5fa" + "fc6d1f5a-da9a-482d-a088-151128f06746" ], "x-ms-correlation-request-id": [ - "83113c72-1c17-4d98-a055-90d8f9fde5fa" + "fc6d1f5a-da9a-482d-a088-151128f06746" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055655Z:83113c72-1c17-4d98-a055-90d8f9fde5fa" + "CENTRALUS:20171214T222942Z:fc6d1f5a-da9a-482d-a088-151128f06746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,19 +120,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "142" + "145" ], "x-ms-client-request-id": [ - "ebd5246d-3395-43ef-9244-0e23bbdd485b" + "195aa5ae-68d9-45eb-b174-fd555c65a025" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Length": [ - "392" + "389" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:58 GMT" + "Thu, 14 Dec 2017 22:29:59 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A30%3A00.9265278Z'\"" ], "x-ms-request-id": [ - "ebd5246d-3395-43ef-9244-0e23bbdd485b" + "195aa5ae-68d9-45eb-b174-fd555c65a025" ], "request-id": [ - "ebd5246d-3395-43ef-9244-0e23bbdd485b" + "195aa5ae-68d9-45eb-b174-fd555c65a025" ], "elapsed-time": [ - "2034" + "15423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,31 +181,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1129" + "1197" ], "x-ms-correlation-request-id": [ - "5d09eee4-9e9a-43f2-a46d-45f1230dd90c" + "efd4134e-39a1-48ef-bcd5-ff9a21c1a0b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055658Z:5d09eee4-9e9a-43f2-a46d-45f1230dd90c" + "CENTRALUS:20171214T222959Z:efd4134e-39a1-48ef-bcd5-ff9a21c1a0b1" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 2,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 2,\r\n \"partitionCount\": 2\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "173" + "77" ], "x-ms-client-request-id": [ - "7565b1b5-3901-474e-8730-ea5992f1288f" + "c2c430ba-433d-4e27-a83b-0fd7a8231e18" ], "accept-language": [ "en-US" @@ -215,7 +215,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:11:12 GMT" + "Thu, 14 Dec 2017 22:30:02 GMT" ], "Pragma": [ "no-cache" @@ -236,20 +236,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7565b1b5-3901-474e-8730-ea5992f1288f" + "c2c430ba-433d-4e27-a83b-0fd7a8231e18" ], "request-id": [ - "7565b1b5-3901-474e-8730-ea5992f1288f" + "c2c430ba-433d-4e27-a83b-0fd7a8231e18" ], "elapsed-time": [ - "2090" + "3144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,31 +258,31 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1128" + "1196" ], "x-ms-correlation-request-id": [ - "afc2d753-edb6-4452-b99e-8d4dfc968cc7" + "963d8483-1f87-41f2-b267-9b5f026bd2c7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061112Z:afc2d753-edb6-4452-b99e-8d4dfc968cc7" + "CENTRALUS:20171214T223003Z:963d8483-1f87-41f2-b267-9b5f026bd2c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"hostingMode\": \"default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "173" + "77" ], "x-ms-client-request-id": [ - "1b804a52-6766-4a7f-9199-333c8da49c0e" + "f555005f-d288-4dd3-8345-f2e5487d9c20" ], "accept-language": [ "en-US" @@ -292,7 +292,7 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +304,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:29:01 GMT" + "Thu, 14 Dec 2017 22:50:12 GMT" ], "Pragma": [ "no-cache" @@ -313,20 +313,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1b804a52-6766-4a7f-9199-333c8da49c0e" + "f555005f-d288-4dd3-8345-f2e5487d9c20" ], "request-id": [ - "1b804a52-6766-4a7f-9199-333c8da49c0e" + "f555005f-d288-4dd3-8345-f2e5487d9c20" ], "elapsed-time": [ - "5715" + "2376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -335,29 +335,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1127" + "1195" ], "x-ms-correlation-request-id": [ - "c826f786-a07c-40c5-9ea1-5f1e2063c578" + "054376aa-1c10-4943-9698-df135f8abbfa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062901Z:c826f786-a07c-40c5-9ea1-5f1e2063c578" + "CENTRALUS:20171214T225012Z:054376aa-1c10-4943-9698-df135f8abbfa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d75db4ab-8d6e-4025-88fa-1eef6461f909" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -369,7 +375,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:57:28 GMT" + "Thu, 14 Dec 2017 22:30:13 GMT" ], "Pragma": [ "no-cache" @@ -378,20 +384,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c6d2e2bb-3207-49f2-8cfe-a03a6a79ea8c" + "d75db4ab-8d6e-4025-88fa-1eef6461f909" ], "request-id": [ - "c6d2e2bb-3207-49f2-8cfe-a03a6a79ea8c" + "d75db4ab-8d6e-4025-88fa-1eef6461f909" ], "elapsed-time": [ - "82" + "358" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -400,29 +406,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14999" ], "x-ms-correlation-request-id": [ - "687ae582-a47a-460e-a631-5c3907531f42" + "03cb685b-d309-48a3-a7af-64f068db84c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055728Z:687ae582-a47a-460e-a631-5c3907531f42" + "CENTRALUS:20171214T223013Z:03cb685b-d309-48a3-a7af-64f068db84c4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a9b84190-fc05-4f35-8897-77ffdd029f60" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -434,7 +446,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:57:59 GMT" + "Thu, 14 Dec 2017 22:30:24 GMT" ], "Pragma": [ "no-cache" @@ -443,20 +455,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a61216f2-88c2-43ab-be3b-c1f7d344a93d" + "a9b84190-fc05-4f35-8897-77ffdd029f60" ], "request-id": [ - "a61216f2-88c2-43ab-be3b-c1f7d344a93d" + "a9b84190-fc05-4f35-8897-77ffdd029f60" ], "elapsed-time": [ - "163" + "1109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -465,29 +477,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14998" ], "x-ms-correlation-request-id": [ - "1fcd10fe-f334-4641-aee2-98270b228da7" + "d2c94c15-9e91-49f5-bc48-956c26684ed5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055759Z:1fcd10fe-f334-4641-aee2-98270b228da7" + "CENTRALUS:20171214T223024Z:d2c94c15-9e91-49f5-bc48-956c26684ed5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "86279857-f53c-40c2-8cab-32c15488cf35" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -499,7 +517,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:58:29 GMT" + "Thu, 14 Dec 2017 22:30:35 GMT" ], "Pragma": [ "no-cache" @@ -508,20 +526,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "fab96e97-1fb1-4b22-a273-be790e76e0fe" + "86279857-f53c-40c2-8cab-32c15488cf35" ], "request-id": [ - "fab96e97-1fb1-4b22-a273-be790e76e0fe" + "86279857-f53c-40c2-8cab-32c15488cf35" ], "elapsed-time": [ - "168" + "725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -530,29 +548,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14997" ], "x-ms-correlation-request-id": [ - "79a99595-f5c7-44fb-94fb-d438dda05b16" + "75891fd7-1a42-4937-a948-3a5dc14777fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055829Z:79a99595-f5c7-44fb-94fb-d438dda05b16" + "CENTRALUS:20171214T223035Z:75891fd7-1a42-4937-a948-3a5dc14777fd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "63bda623-fb97-4b9b-a58d-da4ae20c6dc2" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -564,7 +588,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:58:59 GMT" + "Thu, 14 Dec 2017 22:30:46 GMT" ], "Pragma": [ "no-cache" @@ -573,20 +597,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d56637ec-1d3d-4369-b2a0-94b604207246" + "63bda623-fb97-4b9b-a58d-da4ae20c6dc2" ], "request-id": [ - "d56637ec-1d3d-4369-b2a0-94b604207246" + "63bda623-fb97-4b9b-a58d-da4ae20c6dc2" ], "elapsed-time": [ - "119" + "496" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,29 +619,8839 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14996" + ], + "x-ms-correlation-request-id": [ + "d1b1e07d-edf7-4fb3-9328-33a6fc67a140" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223046Z:d1b1e07d-edf7-4fb3-9328-33a6fc67a140" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45258e7d-4cd6-4a6d-8225-15596f6dba13" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:30:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "45258e7d-4cd6-4a6d-8225-15596f6dba13" + ], + "request-id": [ + "45258e7d-4cd6-4a6d-8225-15596f6dba13" + ], + "elapsed-time": [ + "95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "3f186614-06fd-458e-a517-96086c78c346" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223056Z:3f186614-06fd-458e-a517-96086c78c346" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9fcd6c8-82b8-4b11-b5d8-bc4c4abed3f7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:31:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d9fcd6c8-82b8-4b11-b5d8-bc4c4abed3f7" + ], + "request-id": [ + "d9fcd6c8-82b8-4b11-b5d8-bc4c4abed3f7" + ], + "elapsed-time": [ + "3623" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "42678d03-b7e6-47fb-9b29-44e12a510787" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223110Z:42678d03-b7e6-47fb-9b29-44e12a510787" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c7b773a-1f09-4c31-a2b9-84419f267ce5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:31:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4c7b773a-1f09-4c31-a2b9-84419f267ce5" + ], + "request-id": [ + "4c7b773a-1f09-4c31-a2b9-84419f267ce5" + ], + "elapsed-time": [ + "506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" ], "x-ms-correlation-request-id": [ - "ec703d05-d32b-421c-97cb-80193b8e127b" + "5279678b-8f7d-4d92-b5ec-f2f27c2448b6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055859Z:ec703d05-d32b-421c-97cb-80193b8e127b" + "CENTRALUS:20171214T223121Z:5279678b-8f7d-4d92-b5ec-f2f27c2448b6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8dc414c9-ed0a-457d-9742-3f80193afb71" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:31:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8dc414c9-ed0a-457d-9742-3f80193afb71" + ], + "request-id": [ + "8dc414c9-ed0a-457d-9742-3f80193afb71" + ], + "elapsed-time": [ + "594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "40342c93-e825-4c9c-983b-62354bf7690e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223131Z:40342c93-e825-4c9c-983b-62354bf7690e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0681191-9d7e-4085-bc1b-1b1d49b0de4a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:31:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d0681191-9d7e-4085-bc1b-1b1d49b0de4a" + ], + "request-id": [ + "d0681191-9d7e-4085-bc1b-1b1d49b0de4a" + ], + "elapsed-time": [ + "82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "4aaaab6f-712c-4d9d-8b47-442f30796e40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223141Z:4aaaab6f-712c-4d9d-8b47-442f30796e40" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c8fc264-8805-4da6-b97f-eaac2471c99d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:31:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2c8fc264-8805-4da6-b97f-eaac2471c99d" + ], + "request-id": [ + "2c8fc264-8805-4da6-b97f-eaac2471c99d" + ], + "elapsed-time": [ + "1608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "619426e4-7d12-4ba1-9615-5ae9d872b192" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223153Z:619426e4-7d12-4ba1-9615-5ae9d872b192" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1166a8b-60ed-4495-a255-1e679d6b7aba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:32:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b1166a8b-60ed-4495-a255-1e679d6b7aba" + ], + "request-id": [ + "b1166a8b-60ed-4495-a255-1e679d6b7aba" + ], + "elapsed-time": [ + "210" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "657f68d8-70bb-4d02-8afe-a7e45a41a0e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223203Z:657f68d8-70bb-4d02-8afe-a7e45a41a0e5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "181883be-79b5-410e-8364-15bade627634" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:32:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "181883be-79b5-410e-8364-15bade627634" + ], + "request-id": [ + "181883be-79b5-410e-8364-15bade627634" + ], + "elapsed-time": [ + "419" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "318e4020-b702-4bb8-9faf-e2efdf561124" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223214Z:318e4020-b702-4bb8-9faf-e2efdf561124" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2c4bccc-40ca-41de-a358-1c8bdbc4f773" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:32:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f2c4bccc-40ca-41de-a358-1c8bdbc4f773" + ], + "request-id": [ + "f2c4bccc-40ca-41de-a358-1c8bdbc4f773" + ], + "elapsed-time": [ + "512" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "bf6b62af-5341-444b-9470-2db7db933ddd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223225Z:bf6b62af-5341-444b-9470-2db7db933ddd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "add47e5b-ba50-4d96-a9df-b9b8698d6ed5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:32:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "add47e5b-ba50-4d96-a9df-b9b8698d6ed5" + ], + "request-id": [ + "add47e5b-ba50-4d96-a9df-b9b8698d6ed5" + ], + "elapsed-time": [ + "74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "80bc9e8d-63a7-43a9-8484-219f7cb2d691" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223235Z:80bc9e8d-63a7-43a9-8484-219f7cb2d691" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57521436-20d9-4bea-98a3-9db96b8c527a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:32:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "57521436-20d9-4bea-98a3-9db96b8c527a" + ], + "request-id": [ + "57521436-20d9-4bea-98a3-9db96b8c527a" + ], + "elapsed-time": [ + "565" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "2fd6ff3c-4e0b-4bde-9ed1-d7bb91da2efa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223245Z:2fd6ff3c-4e0b-4bde-9ed1-d7bb91da2efa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2b0ec7a-444b-4772-9f07-b666507d0088" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:32:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a2b0ec7a-444b-4772-9f07-b666507d0088" + ], + "request-id": [ + "a2b0ec7a-444b-4772-9f07-b666507d0088" + ], + "elapsed-time": [ + "419" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "f6fd0a27-3fe4-4105-8f78-a9965091a87c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223256Z:f6fd0a27-3fe4-4105-8f78-a9965091a87c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c047911-b745-4fc4-b50e-f246bd1c5e2b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:33:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6c047911-b745-4fc4-b50e-f246bd1c5e2b" + ], + "request-id": [ + "6c047911-b745-4fc4-b50e-f246bd1c5e2b" + ], + "elapsed-time": [ + "54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "f85dac40-98c8-4710-a650-7cd44f352ace" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223306Z:f85dac40-98c8-4710-a650-7cd44f352ace" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b2162e0-9004-4611-a1a4-fca07109d80f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:33:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6b2162e0-9004-4611-a1a4-fca07109d80f" + ], + "request-id": [ + "6b2162e0-9004-4611-a1a4-fca07109d80f" + ], + "elapsed-time": [ + "832" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "3b6e6a74-136d-4e94-9d3f-dc60e4b82cf3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223317Z:3b6e6a74-136d-4e94-9d3f-dc60e4b82cf3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e30d46e-0e91-4164-b409-620799cd11df" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:33:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e30d46e-0e91-4164-b409-620799cd11df" + ], + "request-id": [ + "4e30d46e-0e91-4164-b409-620799cd11df" + ], + "elapsed-time": [ + "1143" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "5db61da2-07bf-4d72-b197-b0a0bd0a42ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223328Z:5db61da2-07bf-4d72-b197-b0a0bd0a42ec" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4cca707-16a6-4e4d-833a-4df1a06db30d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:33:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d4cca707-16a6-4e4d-833a-4df1a06db30d" + ], + "request-id": [ + "d4cca707-16a6-4e4d-833a-4df1a06db30d" + ], + "elapsed-time": [ + "126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "650c6a2a-0c34-41b4-acbe-6b7ee4e7b43d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223339Z:650c6a2a-0c34-41b4-acbe-6b7ee4e7b43d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf77a930-8078-4861-92b5-bfa053a48dbc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:33:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bf77a930-8078-4861-92b5-bfa053a48dbc" + ], + "request-id": [ + "bf77a930-8078-4861-92b5-bfa053a48dbc" + ], + "elapsed-time": [ + "65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "09921f9d-e911-4043-85bf-a7748baf3a9b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223349Z:09921f9d-e911-4043-85bf-a7748baf3a9b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa6f186e-43e3-4f24-8677-e5aa23fb1708" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:34:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fa6f186e-43e3-4f24-8677-e5aa23fb1708" + ], + "request-id": [ + "fa6f186e-43e3-4f24-8677-e5aa23fb1708" + ], + "elapsed-time": [ + "970" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "d2afc8f9-c8b4-4318-8036-6235afb92519" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223403Z:d2afc8f9-c8b4-4318-8036-6235afb92519" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e2c87b7-c2f5-4f60-b395-3371fb6db326" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:34:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0e2c87b7-c2f5-4f60-b395-3371fb6db326" + ], + "request-id": [ + "0e2c87b7-c2f5-4f60-b395-3371fb6db326" + ], + "elapsed-time": [ + "85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "137c4c04-6a94-4f53-bb54-85841322793b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223413Z:137c4c04-6a94-4f53-bb54-85841322793b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c79cd5c2-66cd-4235-b903-7c5ee703c6b5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:34:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c79cd5c2-66cd-4235-b903-7c5ee703c6b5" + ], + "request-id": [ + "c79cd5c2-66cd-4235-b903-7c5ee703c6b5" + ], + "elapsed-time": [ + "1129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "cafca37f-626a-4658-bdbb-5a50a300f4b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223424Z:cafca37f-626a-4658-bdbb-5a50a300f4b6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "834ce983-8ec1-4642-a06d-69007ddd7125" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:34:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "834ce983-8ec1-4642-a06d-69007ddd7125" + ], + "request-id": [ + "834ce983-8ec1-4642-a06d-69007ddd7125" + ], + "elapsed-time": [ + "169" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "64492cc2-1d26-4ec9-91dd-071bf96ba476" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223435Z:64492cc2-1d26-4ec9-91dd-071bf96ba476" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee3be573-10c8-438e-bddf-69b918a5468b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:34:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ee3be573-10c8-438e-bddf-69b918a5468b" + ], + "request-id": [ + "ee3be573-10c8-438e-bddf-69b918a5468b" + ], + "elapsed-time": [ + "79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "4cab487c-f1a6-4fe9-adcd-8f11df77620d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223445Z:4cab487c-f1a6-4fe9-adcd-8f11df77620d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67206b06-3f71-4d43-bf73-884613108f5c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:34:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "67206b06-3f71-4d43-bf73-884613108f5c" + ], + "request-id": [ + "67206b06-3f71-4d43-bf73-884613108f5c" + ], + "elapsed-time": [ + "62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "4162a2d1-c5ff-453e-b69f-e81e0a7e5bda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223455Z:4162a2d1-c5ff-453e-b69f-e81e0a7e5bda" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a23a93f-dacf-4936-b7ae-f81a16517a72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:35:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5a23a93f-dacf-4936-b7ae-f81a16517a72" + ], + "request-id": [ + "5a23a93f-dacf-4936-b7ae-f81a16517a72" + ], + "elapsed-time": [ + "1288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "18249863-c447-4093-a725-0c98dc64d246" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223506Z:18249863-c447-4093-a725-0c98dc64d246" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7fb1eaf6-a26e-4a65-857f-0f21142092e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:35:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7fb1eaf6-a26e-4a65-857f-0f21142092e5" + ], + "request-id": [ + "7fb1eaf6-a26e-4a65-857f-0f21142092e5" + ], + "elapsed-time": [ + "277" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "7c35a6f9-80a0-421c-8a14-bf1de4e1b2b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223517Z:7c35a6f9-80a0-421c-8a14-bf1de4e1b2b8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e438a92b-d0f9-4357-8aa7-81de3d0114bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e438a92b-d0f9-4357-8aa7-81de3d0114bc" + ], + "request-id": [ + "e438a92b-d0f9-4357-8aa7-81de3d0114bc" + ], + "elapsed-time": [ + "1820" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "af626b7a-890e-4ba5-bbea-e1e7c4f6c327" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223529Z:af626b7a-890e-4ba5-bbea-e1e7c4f6c327" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f21adae-9ced-4aef-b0a5-12882b28b9d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:35:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6f21adae-9ced-4aef-b0a5-12882b28b9d8" + ], + "request-id": [ + "6f21adae-9ced-4aef-b0a5-12882b28b9d8" + ], + "elapsed-time": [ + "72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "3552ee7a-13c7-439a-9a29-242ab4b6f8c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223539Z:3552ee7a-13c7-439a-9a29-242ab4b6f8c8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1dea986d-6f99-4118-8d67-92388693f4b9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:35:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1dea986d-6f99-4118-8d67-92388693f4b9" + ], + "request-id": [ + "1dea986d-6f99-4118-8d67-92388693f4b9" + ], + "elapsed-time": [ + "78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "138b8f0d-d749-4491-af95-8823ad6b118b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223549Z:138b8f0d-d749-4491-af95-8823ad6b118b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95b77a6a-3bcc-4984-8814-bff2d8fb830f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:35:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "95b77a6a-3bcc-4984-8814-bff2d8fb830f" + ], + "request-id": [ + "95b77a6a-3bcc-4984-8814-bff2d8fb830f" + ], + "elapsed-time": [ + "73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "7e70f9be-fe3d-46bd-9406-ad855d91288d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223559Z:7e70f9be-fe3d-46bd-9406-ad855d91288d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b074a0b-1bb8-415b-ada1-062f3060446d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:36:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9b074a0b-1bb8-415b-ada1-062f3060446d" + ], + "request-id": [ + "9b074a0b-1bb8-415b-ada1-062f3060446d" + ], + "elapsed-time": [ + "1812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "a8b8826a-9b85-4496-9baa-306a5a30a653" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223611Z:a8b8826a-9b85-4496-9baa-306a5a30a653" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50330a2c-075c-4959-8002-978b2fe7fdc3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:36:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "50330a2c-075c-4959-8002-978b2fe7fdc3" + ], + "request-id": [ + "50330a2c-075c-4959-8002-978b2fe7fdc3" + ], + "elapsed-time": [ + "176" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "65ee4cfc-0552-4d98-ad38-c1914089a4c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223622Z:65ee4cfc-0552-4d98-ad38-c1914089a4c1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6ac017d-bbe9-4b5d-8ec5-905b51ef91b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:36:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f6ac017d-bbe9-4b5d-8ec5-905b51ef91b7" + ], + "request-id": [ + "f6ac017d-bbe9-4b5d-8ec5-905b51ef91b7" + ], + "elapsed-time": [ + "254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "f997efd5-b90a-457e-9c00-ada1bd0b6cfd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223632Z:f997efd5-b90a-457e-9c00-ada1bd0b6cfd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c08bc00-b475-4bb6-b245-93a918e1ceb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:36:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0c08bc00-b475-4bb6-b245-93a918e1ceb9" + ], + "request-id": [ + "0c08bc00-b475-4bb6-b245-93a918e1ceb9" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "8895c82c-90e8-4b40-9b30-d778c04aea34" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223642Z:8895c82c-90e8-4b40-9b30-d778c04aea34" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fc05dd6-66b1-4280-b7ab-ebf0bc281b55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:36:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0fc05dd6-66b1-4280-b7ab-ebf0bc281b55" + ], + "request-id": [ + "0fc05dd6-66b1-4280-b7ab-ebf0bc281b55" + ], + "elapsed-time": [ + "119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "4167cd92-d60f-4f26-b389-957c95a5e7e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223652Z:4167cd92-d60f-4f26-b389-957c95a5e7e0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c91268b-06a3-4729-8122-8ad90f99520e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:37:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5c91268b-06a3-4729-8122-8ad90f99520e" + ], + "request-id": [ + "5c91268b-06a3-4729-8122-8ad90f99520e" + ], + "elapsed-time": [ + "153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "b827dba4-86cf-4fe9-b065-a7898ec56b5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223703Z:b827dba4-86cf-4fe9-b065-a7898ec56b5b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcd2736b-2d54-4f23-9287-331f25f9f41c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:37:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fcd2736b-2d54-4f23-9287-331f25f9f41c" + ], + "request-id": [ + "fcd2736b-2d54-4f23-9287-331f25f9f41c" + ], + "elapsed-time": [ + "79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "3165aed2-9b3d-44bc-b430-4bf42ac3668f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223713Z:3165aed2-9b3d-44bc-b430-4bf42ac3668f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "240a0195-b98a-49a2-b151-8a11848b68e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:37:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "240a0195-b98a-49a2-b151-8a11848b68e9" + ], + "request-id": [ + "240a0195-b98a-49a2-b151-8a11848b68e9" + ], + "elapsed-time": [ + "227" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "b602d65a-54a2-4550-983b-1b3d45a2ebaf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223723Z:b602d65a-54a2-4550-983b-1b3d45a2ebaf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6f586b4-eb67-4959-b641-fb5ef595e55d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:37:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e6f586b4-eb67-4959-b641-fb5ef595e55d" + ], + "request-id": [ + "e6f586b4-eb67-4959-b641-fb5ef595e55d" + ], + "elapsed-time": [ + "78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "639ea2fa-6bd6-4738-8f54-0e382d74d403" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223733Z:639ea2fa-6bd6-4738-8f54-0e382d74d403" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06a447c9-2a8e-4afa-8525-64bcf788d8c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:37:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "06a447c9-2a8e-4afa-8525-64bcf788d8c8" + ], + "request-id": [ + "06a447c9-2a8e-4afa-8525-64bcf788d8c8" + ], + "elapsed-time": [ + "1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "006e627b-fec9-4f08-8824-817a6ef3664a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223745Z:006e627b-fec9-4f08-8824-817a6ef3664a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "974ef453-b61f-4505-b1bd-14c5a7d4ee19" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:37:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "974ef453-b61f-4505-b1bd-14c5a7d4ee19" + ], + "request-id": [ + "974ef453-b61f-4505-b1bd-14c5a7d4ee19" + ], + "elapsed-time": [ + "1117" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "10d27a2d-0e47-4dc3-bbae-71cbf5ebb7f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223756Z:10d27a2d-0e47-4dc3-bbae-71cbf5ebb7f4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "871597ac-9999-4bbf-b149-1e8a4d5fb397" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:38:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "871597ac-9999-4bbf-b149-1e8a4d5fb397" + ], + "request-id": [ + "871597ac-9999-4bbf-b149-1e8a4d5fb397" + ], + "elapsed-time": [ + "81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "db055c70-8ef3-46b2-b7ac-8aed02ec4543" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223806Z:db055c70-8ef3-46b2-b7ac-8aed02ec4543" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2aa476ca-a8d2-4089-86e5-310e96018fc6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:38:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2aa476ca-a8d2-4089-86e5-310e96018fc6" + ], + "request-id": [ + "2aa476ca-a8d2-4089-86e5-310e96018fc6" + ], + "elapsed-time": [ + "65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "9391a068-1798-4c18-8ab5-fdfeebecd980" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223816Z:9391a068-1798-4c18-8ab5-fdfeebecd980" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cfc3475-252d-4b11-b885-23b09b1201cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:38:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4cfc3475-252d-4b11-b885-23b09b1201cd" + ], + "request-id": [ + "4cfc3475-252d-4b11-b885-23b09b1201cd" + ], + "elapsed-time": [ + "97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "fb0249e4-5b9d-466a-ada8-c5cc01ffad7f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223826Z:fb0249e4-5b9d-466a-ada8-c5cc01ffad7f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e31f5f2-9506-441a-b882-41128e420595" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:38:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3e31f5f2-9506-441a-b882-41128e420595" + ], + "request-id": [ + "3e31f5f2-9506-441a-b882-41128e420595" + ], + "elapsed-time": [ + "85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "3c39dd3a-0fb2-45c0-a8d1-a2db0878f7dd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223837Z:3c39dd3a-0fb2-45c0-a8d1-a2db0878f7dd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8cb8b57e-f232-43d1-aaf7-37da3a27b7e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:38:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8cb8b57e-f232-43d1-aaf7-37da3a27b7e1" + ], + "request-id": [ + "8cb8b57e-f232-43d1-aaf7-37da3a27b7e1" + ], + "elapsed-time": [ + "86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "58fc9e5e-3d7a-4f3b-a171-e0320774c3dc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223847Z:58fc9e5e-3d7a-4f3b-a171-e0320774c3dc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9666136d-a0ec-4651-bb7e-6d94e0ad138e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:38:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9666136d-a0ec-4651-bb7e-6d94e0ad138e" + ], + "request-id": [ + "9666136d-a0ec-4651-bb7e-6d94e0ad138e" + ], + "elapsed-time": [ + "199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "af32d2b0-7434-41f7-8939-1533ffbd415f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223857Z:af32d2b0-7434-41f7-8939-1533ffbd415f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08ae0d6a-774e-4a5b-aa71-988efe946fb0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:39:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "08ae0d6a-774e-4a5b-aa71-988efe946fb0" + ], + "request-id": [ + "08ae0d6a-774e-4a5b-aa71-988efe946fb0" + ], + "elapsed-time": [ + "67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "e1f1284d-7452-4dae-8792-835986bd146f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223908Z:e1f1284d-7452-4dae-8792-835986bd146f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb5ac52a-2560-4399-b3a5-7e67e3a83d96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:39:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fb5ac52a-2560-4399-b3a5-7e67e3a83d96" + ], + "request-id": [ + "fb5ac52a-2560-4399-b3a5-7e67e3a83d96" + ], + "elapsed-time": [ + "593" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "a3974f5a-4f1f-4044-b0eb-e680bf7fc662" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223918Z:a3974f5a-4f1f-4044-b0eb-e680bf7fc662" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86b5e136-8646-4214-8e3a-7bba9ea9492b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:39:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "86b5e136-8646-4214-8e3a-7bba9ea9492b" + ], + "request-id": [ + "86b5e136-8646-4214-8e3a-7bba9ea9492b" + ], + "elapsed-time": [ + "79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "cbbb4e16-9351-4acd-b7ed-c4e2541bbc12" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223929Z:cbbb4e16-9351-4acd-b7ed-c4e2541bbc12" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1841be2-5629-4260-a118-364c10c733ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:39:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c1841be2-5629-4260-a118-364c10c733ee" + ], + "request-id": [ + "c1841be2-5629-4260-a118-364c10c733ee" + ], + "elapsed-time": [ + "122" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "f5497886-5a33-48ec-ba4a-08d0841d0f0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223939Z:f5497886-5a33-48ec-ba4a-08d0841d0f0f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "025a5708-9f5f-48d3-8f87-65b9856e3b76" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:39:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "025a5708-9f5f-48d3-8f87-65b9856e3b76" + ], + "request-id": [ + "025a5708-9f5f-48d3-8f87-65b9856e3b76" + ], + "elapsed-time": [ + "93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "07bbb0c9-80ec-453f-b3ca-8b2c6e796cfd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223949Z:07bbb0c9-80ec-453f-b3ca-8b2c6e796cfd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "435735b0-728c-4326-a8d6-b458da9ff740" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:39:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "435735b0-728c-4326-a8d6-b458da9ff740" + ], + "request-id": [ + "435735b0-728c-4326-a8d6-b458da9ff740" + ], + "elapsed-time": [ + "96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "246706e5-f809-42fa-98a3-7701cde395bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T223959Z:246706e5-f809-42fa-98a3-7701cde395bd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c7f8a76-91b1-4e90-8577-f55d849d8211" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:40:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8c7f8a76-91b1-4e90-8577-f55d849d8211" + ], + "request-id": [ + "8c7f8a76-91b1-4e90-8577-f55d849d8211" + ], + "elapsed-time": [ + "113" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "394196aa-1095-4b4b-8134-154331f82e4e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224010Z:394196aa-1095-4b4b-8134-154331f82e4e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4155685-0a1f-4144-82f8-8abba6182cf3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:40:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c4155685-0a1f-4144-82f8-8abba6182cf3" + ], + "request-id": [ + "c4155685-0a1f-4144-82f8-8abba6182cf3" + ], + "elapsed-time": [ + "1580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "4c70133c-4dc8-4f30-9dc1-bea11b77bc70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224021Z:4c70133c-4dc8-4f30-9dc1-bea11b77bc70" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5fa9632-33d3-457f-a604-b793e1ffa852" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:40:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e5fa9632-33d3-457f-a604-b793e1ffa852" + ], + "request-id": [ + "e5fa9632-33d3-457f-a604-b793e1ffa852" + ], + "elapsed-time": [ + "298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "08e93738-9996-47af-9670-2db5676b7c68" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224032Z:08e93738-9996-47af-9670-2db5676b7c68" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d59846c-1d68-42b0-9650-dd376b97e920" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:40:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0d59846c-1d68-42b0-9650-dd376b97e920" + ], + "request-id": [ + "0d59846c-1d68-42b0-9650-dd376b97e920" + ], + "elapsed-time": [ + "76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "acf7c31b-8b73-43eb-900a-690a3a01fa06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224042Z:acf7c31b-8b73-43eb-900a-690a3a01fa06" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2aad7d1-a758-465b-b8ab-f91ef5186f1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:40:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d2aad7d1-a758-465b-b8ab-f91ef5186f1a" + ], + "request-id": [ + "d2aad7d1-a758-465b-b8ab-f91ef5186f1a" + ], + "elapsed-time": [ + "57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "3bcea959-c51f-470c-bc0b-ad66eb2044f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224052Z:3bcea959-c51f-470c-bc0b-ad66eb2044f4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8f729a6-ec67-4c73-83d3-39651abe5304" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:41:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a8f729a6-ec67-4c73-83d3-39651abe5304" + ], + "request-id": [ + "a8f729a6-ec67-4c73-83d3-39651abe5304" + ], + "elapsed-time": [ + "87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "d9747b6c-bd20-4ab0-8e54-a4f4e54f82df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224102Z:d9747b6c-bd20-4ab0-8e54-a4f4e54f82df" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b26065d8-e8ca-426a-b707-56f892743092" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:41:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b26065d8-e8ca-426a-b707-56f892743092" + ], + "request-id": [ + "b26065d8-e8ca-426a-b707-56f892743092" + ], + "elapsed-time": [ + "68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "996c707c-49c6-449b-84a8-c0c50d4d155c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224113Z:996c707c-49c6-449b-84a8-c0c50d4d155c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bc2f752-2ef5-49ef-a710-bf3760e944bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:41:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0bc2f752-2ef5-49ef-a710-bf3760e944bb" + ], + "request-id": [ + "0bc2f752-2ef5-49ef-a710-bf3760e944bb" + ], + "elapsed-time": [ + "780" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "6dafc64c-1778-4fe6-9779-370de5ee0537" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224124Z:6dafc64c-1778-4fe6-9779-370de5ee0537" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "503bed28-7562-4fa8-a7a6-94309b191093" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:41:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "503bed28-7562-4fa8-a7a6-94309b191093" + ], + "request-id": [ + "503bed28-7562-4fa8-a7a6-94309b191093" + ], + "elapsed-time": [ + "109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "0fc1ae31-f3b0-4ade-b1e7-94c5d7393c4c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224134Z:0fc1ae31-f3b0-4ade-b1e7-94c5d7393c4c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23cb89ae-d835-4515-acf8-81d88b73d290" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:41:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "23cb89ae-d835-4515-acf8-81d88b73d290" + ], + "request-id": [ + "23cb89ae-d835-4515-acf8-81d88b73d290" + ], + "elapsed-time": [ + "71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "77f6fad2-0705-4222-9d42-8d68aaf485a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224144Z:77f6fad2-0705-4222-9d42-8d68aaf485a6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ed905e6-6621-42e0-aee1-416dd679dd8a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:41:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5ed905e6-6621-42e0-aee1-416dd679dd8a" + ], + "request-id": [ + "5ed905e6-6621-42e0-aee1-416dd679dd8a" + ], + "elapsed-time": [ + "426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "2fc13168-30f5-42a4-8eed-929ee7f2f54a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224155Z:2fc13168-30f5-42a4-8eed-929ee7f2f54a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1020db9f-d465-4785-8940-095ad73b6628" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:42:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1020db9f-d465-4785-8940-095ad73b6628" + ], + "request-id": [ + "1020db9f-d465-4785-8940-095ad73b6628" + ], + "elapsed-time": [ + "63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "0ed7f84c-b603-4b90-817e-3cc9501d5595" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224205Z:0ed7f84c-b603-4b90-817e-3cc9501d5595" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b74943f5-6125-4374-9fe3-844439e2de3b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:42:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b74943f5-6125-4374-9fe3-844439e2de3b" + ], + "request-id": [ + "b74943f5-6125-4374-9fe3-844439e2de3b" + ], + "elapsed-time": [ + "89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "81e1abf7-9570-45c0-8966-6af6254e8971" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224215Z:81e1abf7-9570-45c0-8966-6af6254e8971" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a574620-86fb-4024-bf54-de4b84519667" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:42:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4a574620-86fb-4024-bf54-de4b84519667" + ], + "request-id": [ + "4a574620-86fb-4024-bf54-de4b84519667" + ], + "elapsed-time": [ + "943" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "ea1eb1c0-86cd-4c45-9e52-2a8038c3d4b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224226Z:ea1eb1c0-86cd-4c45-9e52-2a8038c3d4b8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95b45845-c575-41f7-80be-ee7a6fd57d4e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:42:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "95b45845-c575-41f7-80be-ee7a6fd57d4e" + ], + "request-id": [ + "95b45845-c575-41f7-80be-ee7a6fd57d4e" + ], + "elapsed-time": [ + "92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "b3b5d776-7b7e-4a48-b319-6847748456b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224236Z:b3b5d776-7b7e-4a48-b319-6847748456b8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b644781-3732-4d41-a84a-4d19bd6d33f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:42:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0b644781-3732-4d41-a84a-4d19bd6d33f2" + ], + "request-id": [ + "0b644781-3732-4d41-a84a-4d19bd6d33f2" + ], + "elapsed-time": [ + "88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "cf5edf90-bf42-4b9e-94cf-0de969a5aae0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224246Z:cf5edf90-bf42-4b9e-94cf-0de969a5aae0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad1fa039-843b-4065-8c74-e38488acc50e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:42:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ad1fa039-843b-4065-8c74-e38488acc50e" + ], + "request-id": [ + "ad1fa039-843b-4065-8c74-e38488acc50e" + ], + "elapsed-time": [ + "762" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "a38ea1c9-8e85-4df0-aae1-6a780ddd40f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224257Z:a38ea1c9-8e85-4df0-aae1-6a780ddd40f7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41517d5c-1f6a-48f7-917f-9fd68b443bc6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:43:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "41517d5c-1f6a-48f7-917f-9fd68b443bc6" + ], + "request-id": [ + "41517d5c-1f6a-48f7-917f-9fd68b443bc6" + ], + "elapsed-time": [ + "82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "02786287-e3ca-48d9-ae14-b4336dc3a1a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224308Z:02786287-e3ca-48d9-ae14-b4336dc3a1a6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d686125b-05a6-4869-aee7-d98d231b9516" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:43:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d686125b-05a6-4869-aee7-d98d231b9516" + ], + "request-id": [ + "d686125b-05a6-4869-aee7-d98d231b9516" + ], + "elapsed-time": [ + "421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "9a35bade-24ee-45f9-addc-5f783033fe83" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224321Z:9a35bade-24ee-45f9-addc-5f783033fe83" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61da744d-239c-4018-a929-e3e47ecb7ef4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:43:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "61da744d-239c-4018-a929-e3e47ecb7ef4" + ], + "request-id": [ + "61da744d-239c-4018-a929-e3e47ecb7ef4" + ], + "elapsed-time": [ + "70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "08f6c971-0ec1-4821-8330-db1ae3970b3c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224331Z:08f6c971-0ec1-4821-8330-db1ae3970b3c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9e1fd51-c343-4847-bef6-3c6253eb7aba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:43:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e9e1fd51-c343-4847-bef6-3c6253eb7aba" + ], + "request-id": [ + "e9e1fd51-c343-4847-bef6-3c6253eb7aba" + ], + "elapsed-time": [ + "88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "3ff7700d-202d-4bd0-8171-1eb635c053ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224341Z:3ff7700d-202d-4bd0-8171-1eb635c053ed" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40b5e20f-acc1-4943-90fa-8eb247934b97" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:43:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "40b5e20f-acc1-4943-90fa-8eb247934b97" + ], + "request-id": [ + "40b5e20f-acc1-4943-90fa-8eb247934b97" + ], + "elapsed-time": [ + "67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "f5d32f60-dfaa-4bd2-83e4-a119d88b972b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224352Z:f5d32f60-dfaa-4bd2-83e4-a119d88b972b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23b6c4fc-1333-47ed-bf5d-9c27c67104ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:44:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "23b6c4fc-1333-47ed-bf5d-9c27c67104ba" + ], + "request-id": [ + "23b6c4fc-1333-47ed-bf5d-9c27c67104ba" + ], + "elapsed-time": [ + "639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "208b680b-930d-43eb-abea-61eac7f73d81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224402Z:208b680b-930d-43eb-abea-61eac7f73d81" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddbe1b7f-a2f4-443f-a664-021368c90d77" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:44:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ddbe1b7f-a2f4-443f-a664-021368c90d77" + ], + "request-id": [ + "ddbe1b7f-a2f4-443f-a664-021368c90d77" + ], + "elapsed-time": [ + "80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "9c00eee5-165b-4a3b-86d9-8066d8c53784" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224413Z:9c00eee5-165b-4a3b-86d9-8066d8c53784" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d78f330-d05f-4cd3-b6e9-e1a6ea243ea0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:44:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1d78f330-d05f-4cd3-b6e9-e1a6ea243ea0" + ], + "request-id": [ + "1d78f330-d05f-4cd3-b6e9-e1a6ea243ea0" + ], + "elapsed-time": [ + "421" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "5c45f3e0-6856-46d5-a8d0-acef38c894e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224423Z:5c45f3e0-6856-46d5-a8d0-acef38c894e7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a283e460-b353-483b-ab87-2c07267133c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:44:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a283e460-b353-483b-ab87-2c07267133c4" + ], + "request-id": [ + "a283e460-b353-483b-ab87-2c07267133c4" + ], + "elapsed-time": [ + "76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "9f3bf2e9-d00b-4f9f-ac65-ee4697603d8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224433Z:9f3bf2e9-d00b-4f9f-ac65-ee4697603d8c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57dd0fc5-e853-4bd3-8996-e027a13a7c89" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:44:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "57dd0fc5-e853-4bd3-8996-e027a13a7c89" + ], + "request-id": [ + "57dd0fc5-e853-4bd3-8996-e027a13a7c89" + ], + "elapsed-time": [ + "187" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "12053e50-eba7-41e9-826c-63c506f33520" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224444Z:12053e50-eba7-41e9-826c-63c506f33520" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d228035-b962-4a10-b72f-8ce431d074dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:44:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8d228035-b962-4a10-b72f-8ce431d074dc" + ], + "request-id": [ + "8d228035-b962-4a10-b72f-8ce431d074dc" + ], + "elapsed-time": [ + "84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "3585c0cd-2fb6-4cae-8088-b48e708b930d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224454Z:3585c0cd-2fb6-4cae-8088-b48e708b930d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe846c62-0fd8-4f57-bba3-21a3f100fa29" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:45:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fe846c62-0fd8-4f57-bba3-21a3f100fa29" + ], + "request-id": [ + "fe846c62-0fd8-4f57-bba3-21a3f100fa29" + ], + "elapsed-time": [ + "213" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "154618ef-458b-4631-b10a-05a31ab9bb25" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224504Z:154618ef-458b-4631-b10a-05a31ab9bb25" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0851136e-bf1e-43b7-b5bf-101cce6176e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:45:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0851136e-bf1e-43b7-b5bf-101cce6176e9" + ], + "request-id": [ + "0851136e-bf1e-43b7-b5bf-101cce6176e9" + ], + "elapsed-time": [ + "51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "6369448b-efff-4010-ae7b-5279e881c252" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224514Z:6369448b-efff-4010-ae7b-5279e881c252" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c5c0e02-e4ca-4fd3-90e0-3c5952d591c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:45:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0c5c0e02-e4ca-4fd3-90e0-3c5952d591c9" + ], + "request-id": [ + "0c5c0e02-e4ca-4fd3-90e0-3c5952d591c9" + ], + "elapsed-time": [ + "89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "dcbeb3dc-1690-4726-b00a-6d77820ec38d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224524Z:dcbeb3dc-1690-4726-b00a-6d77820ec38d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4120db9-8879-407a-8be8-f195d47cea40" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:45:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e4120db9-8879-407a-8be8-f195d47cea40" + ], + "request-id": [ + "e4120db9-8879-407a-8be8-f195d47cea40" + ], + "elapsed-time": [ + "578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "daf55a44-8a27-447c-b774-c1a620646d8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224535Z:daf55a44-8a27-447c-b774-c1a620646d8c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b934e80d-20ca-4cec-b7c5-041f41ed677e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:45:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b934e80d-20ca-4cec-b7c5-041f41ed677e" + ], + "request-id": [ + "b934e80d-20ca-4cec-b7c5-041f41ed677e" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "06d1434b-e80f-478f-b248-23a0107b902a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224545Z:06d1434b-e80f-478f-b248-23a0107b902a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a56a4f89-d98f-4a2f-81c1-09b8970661e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:45:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a56a4f89-d98f-4a2f-81c1-09b8970661e3" + ], + "request-id": [ + "a56a4f89-d98f-4a2f-81c1-09b8970661e3" + ], + "elapsed-time": [ + "84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "bf7f862a-8906-480c-a2b4-d9b7854b0166" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224556Z:bf7f862a-8906-480c-a2b4-d9b7854b0166" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd37b1ec-7f00-4bc4-be13-37238dc64d76" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:46:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fd37b1ec-7f00-4bc4-be13-37238dc64d76" + ], + "request-id": [ + "fd37b1ec-7f00-4bc4-be13-37238dc64d76" + ], + "elapsed-time": [ + "878" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "f4e905d7-de13-4050-809b-30b2c4c02827" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224606Z:f4e905d7-de13-4050-809b-30b2c4c02827" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1ece47d-3849-42e3-a9fd-636b023bc358" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:46:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b1ece47d-3849-42e3-a9fd-636b023bc358" + ], + "request-id": [ + "b1ece47d-3849-42e3-a9fd-636b023bc358" + ], + "elapsed-time": [ + "84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "c4c2f286-65d5-406a-ab4d-48f0e84be12d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224617Z:c4c2f286-65d5-406a-ab4d-48f0e84be12d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4574dfe-644e-4794-bc72-8eb6b72abf0e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:46:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b4574dfe-644e-4794-bc72-8eb6b72abf0e" + ], + "request-id": [ + "b4574dfe-644e-4794-bc72-8eb6b72abf0e" + ], + "elapsed-time": [ + "97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "38dd58d2-1d20-41d8-b1fd-8c95cdb21e9b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224627Z:38dd58d2-1d20-41d8-b1fd-8c95cdb21e9b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ada33db9-a588-4655-b797-9bbc9e938fc0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:46:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ada33db9-a588-4655-b797-9bbc9e938fc0" + ], + "request-id": [ + "ada33db9-a588-4655-b797-9bbc9e938fc0" + ], + "elapsed-time": [ + "1389" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "c20340fa-992f-4e0c-a3a1-f9d4be5bfa2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224638Z:c20340fa-992f-4e0c-a3a1-f9d4be5bfa2d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b76c6d08-c89e-4442-87a4-69009859de58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:46:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b76c6d08-c89e-4442-87a4-69009859de58" + ], + "request-id": [ + "b76c6d08-c89e-4442-87a4-69009859de58" + ], + "elapsed-time": [ + "185" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "481ed8cf-cd8e-480f-ada2-90708f56b22f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224649Z:481ed8cf-cd8e-480f-ada2-90708f56b22f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fb6bd1a-84c4-46cc-ad68-fc5908cf2ac9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:46:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1fb6bd1a-84c4-46cc-ad68-fc5908cf2ac9" + ], + "request-id": [ + "1fb6bd1a-84c4-46cc-ad68-fc5908cf2ac9" + ], + "elapsed-time": [ + "124" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "82a5ca92-f85c-4ee3-91b9-e326c513f5e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224659Z:82a5ca92-f85c-4ee3-91b9-e326c513f5e2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2d9d1cf-0153-417b-bcfc-1dd8197e32d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:47:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f2d9d1cf-0153-417b-bcfc-1dd8197e32d6" + ], + "request-id": [ + "f2d9d1cf-0153-417b-bcfc-1dd8197e32d6" + ], + "elapsed-time": [ + "1946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "165933dd-9f3b-4a75-a2c2-053d727dbf87" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224711Z:165933dd-9f3b-4a75-a2c2-053d727dbf87" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31a9c78f-afd0-4bcc-8a00-5d864fc38acb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:47:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "31a9c78f-afd0-4bcc-8a00-5d864fc38acb" + ], + "request-id": [ + "31a9c78f-afd0-4bcc-8a00-5d864fc38acb" + ], + "elapsed-time": [ + "1725" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "55c6c44f-7d8c-44c8-8c1a-f1d2f4241573" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224723Z:55c6c44f-7d8c-44c8-8c1a-f1d2f4241573" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bcb5881f-326e-41d9-bb8a-d32ec7a5ab69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:47:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bcb5881f-326e-41d9-bb8a-d32ec7a5ab69" + ], + "request-id": [ + "bcb5881f-326e-41d9-bb8a-d32ec7a5ab69" + ], + "elapsed-time": [ + "88" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "6e07d10d-e439-4823-a0c8-7912749ae5b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224733Z:6e07d10d-e439-4823-a0c8-7912749ae5b9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "801112b3-3d7b-498a-804c-d1c074b40d9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:47:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "801112b3-3d7b-498a-804c-d1c074b40d9d" + ], + "request-id": [ + "801112b3-3d7b-498a-804c-d1c074b40d9d" + ], + "elapsed-time": [ + "56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "93d020c5-e411-4122-8b37-b15838ee10dc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224743Z:93d020c5-e411-4122-8b37-b15838ee10dc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bda7ddd8-fe21-47a7-9d3a-3bfaeef3dad2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:47:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bda7ddd8-fe21-47a7-9d3a-3bfaeef3dad2" + ], + "request-id": [ + "bda7ddd8-fe21-47a7-9d3a-3bfaeef3dad2" + ], + "elapsed-time": [ + "854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14899" + ], + "x-ms-correlation-request-id": [ + "e959d45f-89be-493b-8869-af743031575a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224754Z:e959d45f-89be-493b-8869-af743031575a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b159e6d-802c-4c10-abac-5e2b60317668" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:48:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9b159e6d-802c-4c10-abac-5e2b60317668" + ], + "request-id": [ + "9b159e6d-802c-4c10-abac-5e2b60317668" + ], + "elapsed-time": [ + "95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14898" + ], + "x-ms-correlation-request-id": [ + "f4035176-43e3-4dfd-bad7-ac7c1105dca2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224805Z:f4035176-43e3-4dfd-bad7-ac7c1105dca2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e01807c-bdaa-47c6-9aeb-3fac7266c19a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:48:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8e01807c-bdaa-47c6-9aeb-3fac7266c19a" + ], + "request-id": [ + "8e01807c-bdaa-47c6-9aeb-3fac7266c19a" + ], + "elapsed-time": [ + "84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14897" + ], + "x-ms-correlation-request-id": [ + "8b43c3ed-4470-4747-9d02-a7a103960dd1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224815Z:8b43c3ed-4470-4747-9d02-a7a103960dd1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df427a02-4b0b-4168-b984-fdafea4fcbb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:48:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "df427a02-4b0b-4168-b984-fdafea4fcbb9" + ], + "request-id": [ + "df427a02-4b0b-4168-b984-fdafea4fcbb9" + ], + "elapsed-time": [ + "261" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14896" + ], + "x-ms-correlation-request-id": [ + "dad597e4-25d4-4859-ba8c-f9078bdffd9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224825Z:dad597e4-25d4-4859-ba8c-f9078bdffd9e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d2c9d85-20cc-4c98-85b6-4f8bf76cda40" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:48:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2d2c9d85-20cc-4c98-85b6-4f8bf76cda40" + ], + "request-id": [ + "2d2c9d85-20cc-4c98-85b6-4f8bf76cda40" + ], + "elapsed-time": [ + "85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14895" + ], + "x-ms-correlation-request-id": [ + "67867463-5a61-4f50-b5b0-fd997ca431a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224835Z:67867463-5a61-4f50-b5b0-fd997ca431a1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1536b3a-5086-456a-b964-53a25e367894" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:48:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c1536b3a-5086-456a-b964-53a25e367894" + ], + "request-id": [ + "c1536b3a-5086-456a-b964-53a25e367894" + ], + "elapsed-time": [ + "1236" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14894" + ], + "x-ms-correlation-request-id": [ + "c110a6e1-5c7b-4653-9691-462750af4f5e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224847Z:c110a6e1-5c7b-4653-9691-462750af4f5e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0992df28-fa14-49f1-ad39-4c3b12613c56" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:48:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0992df28-fa14-49f1-ad39-4c3b12613c56" + ], + "request-id": [ + "0992df28-fa14-49f1-ad39-4c3b12613c56" + ], + "elapsed-time": [ + "357" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14893" + ], + "x-ms-correlation-request-id": [ + "fc699166-9b5a-4eb8-b6d9-ab3f4a8ffd54" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224857Z:fc699166-9b5a-4eb8-b6d9-ab3f4a8ffd54" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c40a4d8-a793-4a13-a359-d35aa7465b80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:49:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7c40a4d8-a793-4a13-a359-d35aa7465b80" + ], + "request-id": [ + "7c40a4d8-a793-4a13-a359-d35aa7465b80" + ], + "elapsed-time": [ + "274" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14892" + ], + "x-ms-correlation-request-id": [ + "64465bc7-d860-49e6-9de2-d05facb30c6c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224908Z:64465bc7-d860-49e6-9de2-d05facb30c6c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67a45559-b8a2-4678-8f7e-9ff9e53dea3a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:49:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "67a45559-b8a2-4678-8f7e-9ff9e53dea3a" + ], + "request-id": [ + "67a45559-b8a2-4678-8f7e-9ff9e53dea3a" + ], + "elapsed-time": [ + "77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14891" + ], + "x-ms-correlation-request-id": [ + "9aa62ab0-1d7c-4663-946d-1255743772e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224918Z:9aa62ab0-1d7c-4663-946d-1255743772e5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27f650ba-1526-458a-ba69-6a562010fb99" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:49:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "27f650ba-1526-458a-ba69-6a562010fb99" + ], + "request-id": [ + "27f650ba-1526-458a-ba69-6a562010fb99" + ], + "elapsed-time": [ + "549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-correlation-request-id": [ + "1d4012fd-926b-4b7f-9db3-6e61be3d570f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224928Z:1d4012fd-926b-4b7f-9db3-6e61be3d570f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfecf9e4-7f40-4ca2-8734-d148b7ce5731" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:49:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dfecf9e4-7f40-4ca2-8734-d148b7ce5731" + ], + "request-id": [ + "dfecf9e4-7f40-4ca2-8734-d148b7ce5731" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-correlation-request-id": [ + "bb06ea97-11f2-4915-abee-925cd1cd28e4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224939Z:bb06ea97-11f2-4915-abee-925cd1cd28e4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54136900-b5a0-4315-bdb7-837e630fad31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:49:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "54136900-b5a0-4315-bdb7-837e630fad31" + ], + "request-id": [ + "54136900-b5a0-4315-bdb7-837e630fad31" + ], + "elapsed-time": [ + "116" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14888" + ], + "x-ms-correlation-request-id": [ + "b40c9cb9-2375-4a3c-a9a6-1c2591f93135" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T224949Z:b40c9cb9-2375-4a3c-a9a6-1c2591f93135" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f195040-7757-477d-a8c1-5e1669d55e76" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:49:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9f195040-7757-477d-a8c1-5e1669d55e76" + ], + "request-id": [ + "9f195040-7757-477d-a8c1-5e1669d55e76" + ], + "elapsed-time": [ + "849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14887" + ], + "x-ms-correlation-request-id": [ + "e6deeaf1-e497-4faf-978f-c962d5f4a4be" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225000Z:e6deeaf1-e497-4faf-978f-c962d5f4a4be" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2a39ade-2154-4012-8bd1-3a549b793349" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":2,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:50:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A30%3A05.0557204Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d2a39ade-2154-4012-8bd1-3a549b793349" + ], + "request-id": [ + "d2a39ade-2154-4012-8bd1-3a549b793349" + ], + "elapsed-time": [ + "83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14886" + ], + "x-ms-correlation-request-id": [ + "89322171-8ebc-4c28-80af-5caf4945d944" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225010Z:89322171-8ebc-4c28-80af-5caf4945d944" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fc9564d-3649-4140-88b6-b23b1d16848a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:50:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8fc9564d-3649-4140-88b6-b23b1d16848a" + ], + "request-id": [ + "8fc9564d-3649-4140-88b6-b23b1d16848a" + ], + "elapsed-time": [ + "917" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14885" + ], + "x-ms-correlation-request-id": [ + "d8ebe727-01ea-4d30-8550-5a90f93c254f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225023Z:d8ebe727-01ea-4d30-8550-5a90f93c254f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50543e9d-a55a-477f-b27d-3f1b81a98c29" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:50:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "50543e9d-a55a-477f-b27d-3f1b81a98c29" + ], + "request-id": [ + "50543e9d-a55a-477f-b27d-3f1b81a98c29" + ], + "elapsed-time": [ + "89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14884" + ], + "x-ms-correlation-request-id": [ + "bc11290a-dc71-4b40-b397-d82e654dd386" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225034Z:bc11290a-dc71-4b40-b397-d82e654dd386" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc6f8a65-d5d6-483b-a940-e19dd9edf33a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:50:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bc6f8a65-d5d6-483b-a940-e19dd9edf33a" + ], + "request-id": [ + "bc6f8a65-d5d6-483b-a940-e19dd9edf33a" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14883" + ], + "x-ms-correlation-request-id": [ + "eb7d62b2-6506-404a-88c7-6998ce576b0c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225044Z:eb7d62b2-6506-404a-88c7-6998ce576b0c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0719ea73-101a-48f3-b34b-d3f6796f2d38" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:50:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0719ea73-101a-48f3-b34b-d3f6796f2d38" + ], + "request-id": [ + "0719ea73-101a-48f3-b34b-d3f6796f2d38" + ], + "elapsed-time": [ + "64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14882" + ], + "x-ms-correlation-request-id": [ + "bb83ecfb-4d7d-437c-b88d-3f46a67fa979" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225054Z:bb83ecfb-4d7d-437c-b88d-3f46a67fa979" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f14549d6-06de-4da7-bdea-d28c1e576c34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:51:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f14549d6-06de-4da7-bdea-d28c1e576c34" + ], + "request-id": [ + "f14549d6-06de-4da7-bdea-d28c1e576c34" + ], + "elapsed-time": [ + "300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14881" + ], + "x-ms-correlation-request-id": [ + "387c45b1-f44c-4842-b42d-410d280df6e3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225104Z:387c45b1-f44c-4842-b42d-410d280df6e3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c3ac810-1dd5-4e09-a5f0-060bcc3d5b8b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:51:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2c3ac810-1dd5-4e09-a5f0-060bcc3d5b8b" + ], + "request-id": [ + "2c3ac810-1dd5-4e09-a5f0-060bcc3d5b8b" + ], + "elapsed-time": [ + "929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14880" + ], + "x-ms-correlation-request-id": [ + "57a62c9d-9308-4899-af57-d7e38c39bca7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225115Z:57a62c9d-9308-4899-af57-d7e38c39bca7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a37d7fbe-add7-4d6b-82f8-c123e353876b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:51:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a37d7fbe-add7-4d6b-82f8-c123e353876b" + ], + "request-id": [ + "a37d7fbe-add7-4d6b-82f8-c123e353876b" + ], + "elapsed-time": [ + "466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14879" + ], + "x-ms-correlation-request-id": [ + "bdaf7f0a-9757-4738-8541-ecf81da4d630" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225126Z:bdaf7f0a-9757-4738-8541-ecf81da4d630" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d777d8a-de8b-413d-b3d2-494c3f97188d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:51:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4d777d8a-de8b-413d-b3d2-494c3f97188d" + ], + "request-id": [ + "4d777d8a-de8b-413d-b3d2-494c3f97188d" + ], + "elapsed-time": [ + "102" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "0cc2f422-7c00-4aab-8226-a1a77cbc9084" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225139Z:0cc2f422-7c00-4aab-8226-a1a77cbc9084" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76face90-2986-4ed2-a0cf-f59ad88a6781" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:51:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "76face90-2986-4ed2-a0cf-f59ad88a6781" + ], + "request-id": [ + "76face90-2986-4ed2-a0cf-f59ad88a6781" + ], + "elapsed-time": [ + "716" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14877" + ], + "x-ms-correlation-request-id": [ + "16f6fe46-b628-47da-940c-c39db5949af7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225150Z:16f6fe46-b628-47da-940c-c39db5949af7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea31d24e-c874-4912-a6d4-159f81d5f2f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:52:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ea31d24e-c874-4912-a6d4-159f81d5f2f1" + ], + "request-id": [ + "ea31d24e-c874-4912-a6d4-159f81d5f2f1" + ], + "elapsed-time": [ + "188" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14876" + ], + "x-ms-correlation-request-id": [ + "8c56f386-73a0-4ea0-a246-c918c52b2f1b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225200Z:8c56f386-73a0-4ea0-a246-c918c52b2f1b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e80b425-78a2-4c36-8040-1154585448e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:52:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e80b425-78a2-4c36-8040-1154585448e7" + ], + "request-id": [ + "4e80b425-78a2-4c36-8040-1154585448e7" + ], + "elapsed-time": [ + "1310" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14875" + ], + "x-ms-correlation-request-id": [ + "c1000c95-ccf8-4dbe-aade-9d5dca8f50e4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225211Z:c1000c95-ccf8-4dbe-aade-9d5dca8f50e4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0360a779-ae89-4170-805a-88fdc6d83c01" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:52:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0360a779-ae89-4170-805a-88fdc6d83c01" + ], + "request-id": [ + "0360a779-ae89-4170-805a-88fdc6d83c01" + ], + "elapsed-time": [ + "70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14874" + ], + "x-ms-correlation-request-id": [ + "c023c10f-f711-4ee3-848c-bcfe35d14730" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225222Z:c023c10f-f711-4ee3-848c-bcfe35d14730" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4055b0c1-03ba-4edf-b631-0f53276c3128" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:52:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4055b0c1-03ba-4edf-b631-0f53276c3128" + ], + "request-id": [ + "4055b0c1-03ba-4edf-b631-0f53276c3128" + ], + "elapsed-time": [ + "79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14873" + ], + "x-ms-correlation-request-id": [ + "f7ae3726-a2db-42e3-8fea-d352faf07325" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225232Z:f7ae3726-a2db-42e3-8fea-d352faf07325" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7714e4b0-22b6-4b48-8e9f-48e125ce14cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 22:52:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7714e4b0-22b6-4b48-8e9f-48e125ce14cd" + ], + "request-id": [ + "7714e4b0-22b6-4b48-8e9f-48e125ce14cd" + ], + "elapsed-time": [ + "255" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14872" + ], + "x-ms-correlation-request-id": [ + "02b75e96-7347-4c97-a22f-4a02f525a0b8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T225242Z:02b75e96-7347-4c97-a22f-4a02f525a0b8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e13145f-779c-4989-a5e2-7afa7317395a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -629,7 +9463,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:59:30 GMT" + "Thu, 14 Dec 2017 22:52:52 GMT" ], "Pragma": [ "no-cache" @@ -638,20 +9472,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "283d0284-7aa7-41ec-b453-32b7baaf71ff" + "4e13145f-779c-4989-a5e2-7afa7317395a" ], "request-id": [ - "283d0284-7aa7-41ec-b453-32b7baaf71ff" + "4e13145f-779c-4989-a5e2-7afa7317395a" ], "elapsed-time": [ - "130" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -660,29 +9494,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14871" ], "x-ms-correlation-request-id": [ - "50d2edc5-5ba1-48f4-9786-4a9d5fd70a97" + "eaeeba17-d738-4676-a304-543af052f59a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055930Z:50d2edc5-5ba1-48f4-9786-4a9d5fd70a97" + "CENTRALUS:20171214T225252Z:eaeeba17-d738-4676-a304-543af052f59a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7008d9a5-bf54-4f74-ba38-56b135b236dc" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -694,7 +9534,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:00:00 GMT" + "Thu, 14 Dec 2017 22:53:03 GMT" ], "Pragma": [ "no-cache" @@ -703,20 +9543,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "0f272518-a167-4282-92b2-284a3f92e015" + "7008d9a5-bf54-4f74-ba38-56b135b236dc" ], "request-id": [ - "0f272518-a167-4282-92b2-284a3f92e015" + "7008d9a5-bf54-4f74-ba38-56b135b236dc" ], "elapsed-time": [ - "1100" + "191" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -725,29 +9565,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14870" ], "x-ms-correlation-request-id": [ - "e1ea833c-2e99-4f36-b45c-74e2974bad61" + "9311bdcb-521f-4d61-a33d-12adc423d186" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060001Z:e1ea833c-2e99-4f36-b45c-74e2974bad61" + "CENTRALUS:20171214T225303Z:9311bdcb-521f-4d61-a33d-12adc423d186" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "738d2f5b-105b-4cfe-8570-11dc931908b6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -759,7 +9605,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:00:31 GMT" + "Thu, 14 Dec 2017 22:53:13 GMT" ], "Pragma": [ "no-cache" @@ -768,20 +9614,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "665bc40c-9831-4cc5-a619-d7a30cf1334e" + "738d2f5b-105b-4cfe-8570-11dc931908b6" ], "request-id": [ - "665bc40c-9831-4cc5-a619-d7a30cf1334e" + "738d2f5b-105b-4cfe-8570-11dc931908b6" ], "elapsed-time": [ - "62" + "82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,29 +9636,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14869" ], "x-ms-correlation-request-id": [ - "70bf3573-2142-4a09-9d0b-369172a0f6aa" + "10fdd1db-9c12-42e8-8760-82c98b5e429c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060031Z:70bf3573-2142-4a09-9d0b-369172a0f6aa" + "CENTRALUS:20171214T225313Z:10fdd1db-9c12-42e8-8760-82c98b5e429c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9f16d0a3-7ae3-40de-847f-283942922e21" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -824,7 +9676,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:01:00 GMT" + "Thu, 14 Dec 2017 22:53:23 GMT" ], "Pragma": [ "no-cache" @@ -833,20 +9685,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ff20fb65-1a29-4b30-83ce-44a1d6850b0b" + "9f16d0a3-7ae3-40de-847f-283942922e21" ], "request-id": [ - "ff20fb65-1a29-4b30-83ce-44a1d6850b0b" + "9f16d0a3-7ae3-40de-847f-283942922e21" ], "elapsed-time": [ - "58" + "859" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -855,29 +9707,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14868" ], "x-ms-correlation-request-id": [ - "938c077f-fca6-4dea-8494-85744f612add" + "9cd80af4-5099-41a8-a93f-63527d225b5a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060101Z:938c077f-fca6-4dea-8494-85744f612add" + "CENTRALUS:20171214T225324Z:9cd80af4-5099-41a8-a93f-63527d225b5a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5b1dd8fa-f027-4230-b718-f5df6430c4f0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -889,7 +9747,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:01:31 GMT" + "Thu, 14 Dec 2017 22:53:34 GMT" ], "Pragma": [ "no-cache" @@ -898,20 +9756,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e056d508-c7c8-43a1-b9ed-a1d42be47e83" + "5b1dd8fa-f027-4230-b718-f5df6430c4f0" ], "request-id": [ - "e056d508-c7c8-43a1-b9ed-a1d42be47e83" + "5b1dd8fa-f027-4230-b718-f5df6430c4f0" ], "elapsed-time": [ - "65" + "70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -920,29 +9778,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14867" ], "x-ms-correlation-request-id": [ - "3c780ae4-8777-420e-9320-fa8ae12e6a3e" + "0ba3ec18-fcbf-4b5e-843e-d561fa7efc85" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060131Z:3c780ae4-8777-420e-9320-fa8ae12e6a3e" + "CENTRALUS:20171214T225334Z:0ba3ec18-fcbf-4b5e-843e-d561fa7efc85" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e5cf98d9-e93c-4cdd-b948-9c5e2dec1c18" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -954,7 +9818,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:02:01 GMT" + "Thu, 14 Dec 2017 22:53:44 GMT" ], "Pragma": [ "no-cache" @@ -963,20 +9827,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "dacfa1f8-a216-4e3e-bc00-a4cf2a857fc6" + "e5cf98d9-e93c-4cdd-b948-9c5e2dec1c18" ], "request-id": [ - "dacfa1f8-a216-4e3e-bc00-a4cf2a857fc6" + "e5cf98d9-e93c-4cdd-b948-9c5e2dec1c18" ], "elapsed-time": [ - "133" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -985,29 +9849,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14866" ], "x-ms-correlation-request-id": [ - "2dcb072e-082d-4968-baed-4d1e9f1cfb25" + "f19d5445-8577-4009-8f7e-11a36476a9c6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060202Z:2dcb072e-082d-4968-baed-4d1e9f1cfb25" + "CENTRALUS:20171214T225344Z:f19d5445-8577-4009-8f7e-11a36476a9c6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "477076cd-6e20-4e85-9277-a8968315ad54" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1019,7 +9889,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:02:32 GMT" + "Thu, 14 Dec 2017 22:53:55 GMT" ], "Pragma": [ "no-cache" @@ -1028,20 +9898,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "34907edf-f5c2-45ec-9959-91fa6df63a7d" + "477076cd-6e20-4e85-9277-a8968315ad54" ], "request-id": [ - "34907edf-f5c2-45ec-9959-91fa6df63a7d" + "477076cd-6e20-4e85-9277-a8968315ad54" ], "elapsed-time": [ - "73" + "123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,29 +9920,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14865" ], "x-ms-correlation-request-id": [ - "33281ca1-ad1b-41df-8e45-dd87f86a2766" + "5bc25726-2064-4c90-9a5c-9cd057d70548" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060232Z:33281ca1-ad1b-41df-8e45-dd87f86a2766" + "CENTRALUS:20171214T225355Z:5bc25726-2064-4c90-9a5c-9cd057d70548" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "66fac864-accb-4076-a19f-f39f6965813a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1084,7 +9960,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:03:02 GMT" + "Thu, 14 Dec 2017 22:54:06 GMT" ], "Pragma": [ "no-cache" @@ -1093,20 +9969,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "67eba2b0-ff40-4c85-8665-81e561e5fa11" + "66fac864-accb-4076-a19f-f39f6965813a" ], "request-id": [ - "67eba2b0-ff40-4c85-8665-81e561e5fa11" + "66fac864-accb-4076-a19f-f39f6965813a" ], "elapsed-time": [ - "87" + "1565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,29 +9991,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14864" ], "x-ms-correlation-request-id": [ - "45931bb9-2f82-4a5d-a793-7971a640f789" + "52543598-fbad-4521-be71-d87ce5614dc4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060302Z:45931bb9-2f82-4a5d-a793-7971a640f789" + "CENTRALUS:20171214T225406Z:52543598-fbad-4521-be71-d87ce5614dc4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1521a2cc-fbe5-486c-8efc-e28d571146fb" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1149,7 +10031,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:03:32 GMT" + "Thu, 14 Dec 2017 22:54:16 GMT" ], "Pragma": [ "no-cache" @@ -1158,20 +10040,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "27d09cbf-1c1c-41aa-b332-c7b7364d77cb" + "1521a2cc-fbe5-486c-8efc-e28d571146fb" ], "request-id": [ - "27d09cbf-1c1c-41aa-b332-c7b7364d77cb" + "1521a2cc-fbe5-486c-8efc-e28d571146fb" ], "elapsed-time": [ - "98" + "71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1180,29 +10062,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14863" ], "x-ms-correlation-request-id": [ - "c8aefb4b-5f86-4fd7-b1e8-5b7040ac229e" + "0484f323-3f43-4b83-890e-adbeb4467bb0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060332Z:c8aefb4b-5f86-4fd7-b1e8-5b7040ac229e" + "CENTRALUS:20171214T225416Z:0484f323-3f43-4b83-890e-adbeb4467bb0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b509c431-3f8c-47a3-8bff-71c23fc56579" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1214,7 +10102,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:04:02 GMT" + "Thu, 14 Dec 2017 22:54:26 GMT" ], "Pragma": [ "no-cache" @@ -1223,20 +10111,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d4476e74-0160-4838-8549-f74ce3f92363" + "b509c431-3f8c-47a3-8bff-71c23fc56579" ], "request-id": [ - "d4476e74-0160-4838-8549-f74ce3f92363" + "b509c431-3f8c-47a3-8bff-71c23fc56579" ], "elapsed-time": [ - "155" + "163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,29 +10133,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14862" ], "x-ms-correlation-request-id": [ - "b1909beb-2d34-415f-a91a-ffd44f4896f4" + "b1f73f57-c6b8-4b32-ac57-72dd97e07223" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060403Z:b1909beb-2d34-415f-a91a-ffd44f4896f4" + "CENTRALUS:20171214T225427Z:b1f73f57-c6b8-4b32-ac57-72dd97e07223" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "323dd862-171b-4c7e-8b00-0f9313b39e4c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1279,7 +10173,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:04:33 GMT" + "Thu, 14 Dec 2017 22:54:37 GMT" ], "Pragma": [ "no-cache" @@ -1288,20 +10182,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e4663809-8400-409f-80be-84d8699e8fd3" + "323dd862-171b-4c7e-8b00-0f9313b39e4c" ], "request-id": [ - "e4663809-8400-409f-80be-84d8699e8fd3" + "323dd862-171b-4c7e-8b00-0f9313b39e4c" ], "elapsed-time": [ - "238" + "109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1310,29 +10204,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14861" ], "x-ms-correlation-request-id": [ - "e59f227f-6fe1-43e9-91ef-ff9848e645ae" + "271f68ac-899f-4601-80eb-6f34c0680aa3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060433Z:e59f227f-6fe1-43e9-91ef-ff9848e645ae" + "CENTRALUS:20171214T225437Z:271f68ac-899f-4601-80eb-6f34c0680aa3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "31f92162-98a3-4f4f-8b97-6cb7a58d2065" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1344,7 +10244,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:05:03 GMT" + "Thu, 14 Dec 2017 22:54:46 GMT" ], "Pragma": [ "no-cache" @@ -1353,20 +10253,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "de6be014-9aa1-48b2-8510-4e16701a6fb6" + "31f92162-98a3-4f4f-8b97-6cb7a58d2065" ], "request-id": [ - "de6be014-9aa1-48b2-8510-4e16701a6fb6" + "31f92162-98a3-4f4f-8b97-6cb7a58d2065" ], "elapsed-time": [ - "76" + "63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1375,29 +10275,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14860" ], "x-ms-correlation-request-id": [ - "9c5c95c0-01aa-4d59-9c90-eb329d73a49c" + "0ec89b23-b35b-4c53-b6b3-b33c23f8a6b0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060503Z:9c5c95c0-01aa-4d59-9c90-eb329d73a49c" + "CENTRALUS:20171214T225447Z:0ec89b23-b35b-4c53-b6b3-b33c23f8a6b0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1a26da90-e2c7-408a-91f4-b48ac1e63599" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1409,7 +10315,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:05:34 GMT" + "Thu, 14 Dec 2017 22:55:01 GMT" ], "Pragma": [ "no-cache" @@ -1418,20 +10324,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "97a43980-b07d-4b8c-80c5-d8d9bcef5d10" + "1a26da90-e2c7-408a-91f4-b48ac1e63599" ], "request-id": [ - "97a43980-b07d-4b8c-80c5-d8d9bcef5d10" + "1a26da90-e2c7-408a-91f4-b48ac1e63599" ], "elapsed-time": [ - "276" + "3382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1440,29 +10346,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14859" ], "x-ms-correlation-request-id": [ - "3f2114a6-4ab3-436f-880a-6b0a64915c97" + "ae2a211f-a23a-4e23-bd47-1b9d94ebc1fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060534Z:3f2114a6-4ab3-436f-880a-6b0a64915c97" + "CENTRALUS:20171214T225501Z:ae2a211f-a23a-4e23-bd47-1b9d94ebc1fb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "599daf46-158a-4427-bda4-4f9b43960046" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1474,7 +10386,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:06:04 GMT" + "Thu, 14 Dec 2017 22:55:10 GMT" ], "Pragma": [ "no-cache" @@ -1483,20 +10395,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "4985e97f-1948-460e-b601-81ab37c13402" + "599daf46-158a-4427-bda4-4f9b43960046" ], "request-id": [ - "4985e97f-1948-460e-b601-81ab37c13402" + "599daf46-158a-4427-bda4-4f9b43960046" ], "elapsed-time": [ - "299" + "73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1505,29 +10417,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14858" ], "x-ms-correlation-request-id": [ - "66461685-eb52-495a-9936-1e33f6033ecf" + "3b17d077-6a2a-412f-93a2-eb80bc2bcea4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060604Z:66461685-eb52-495a-9936-1e33f6033ecf" + "CENTRALUS:20171214T225511Z:3b17d077-6a2a-412f-93a2-eb80bc2bcea4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fe0a0a90-1f05-4c60-ac73-558c34ef7343" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1539,7 +10457,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:06:34 GMT" + "Thu, 14 Dec 2017 22:55:21 GMT" ], "Pragma": [ "no-cache" @@ -1548,20 +10466,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3baec8a8-a96b-4ed5-bf35-2a1724a0878d" + "fe0a0a90-1f05-4c60-ac73-558c34ef7343" ], "request-id": [ - "3baec8a8-a96b-4ed5-bf35-2a1724a0878d" + "fe0a0a90-1f05-4c60-ac73-558c34ef7343" ], "elapsed-time": [ - "99" + "117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,29 +10488,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14857" ], "x-ms-correlation-request-id": [ - "845dc4a8-4301-4656-8cf6-806368dc00c4" + "4dbeea8e-4fd0-4b7b-93ef-057ec3881da2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060634Z:845dc4a8-4301-4656-8cf6-806368dc00c4" + "CENTRALUS:20171214T225521Z:4dbeea8e-4fd0-4b7b-93ef-057ec3881da2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "184fb9d2-76eb-4e89-8302-ecb70399db32" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1604,7 +10528,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:07:07 GMT" + "Thu, 14 Dec 2017 22:55:31 GMT" ], "Pragma": [ "no-cache" @@ -1613,20 +10537,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b3a9ce06-c495-4f85-a083-81ec388387de" + "184fb9d2-76eb-4e89-8302-ecb70399db32" ], "request-id": [ - "b3a9ce06-c495-4f85-a083-81ec388387de" + "184fb9d2-76eb-4e89-8302-ecb70399db32" ], "elapsed-time": [ - "66" + "68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1635,29 +10559,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14856" ], "x-ms-correlation-request-id": [ - "adefdf18-0f69-4437-a4fd-0965abb11ad0" + "43529b74-6e98-414d-a4d7-8d94c7525ad9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060707Z:adefdf18-0f69-4437-a4fd-0965abb11ad0" + "CENTRALUS:20171214T225531Z:43529b74-6e98-414d-a4d7-8d94c7525ad9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3c535aa7-4f25-40af-9352-b4c61794764e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1669,7 +10599,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:07:38 GMT" + "Thu, 14 Dec 2017 22:55:42 GMT" ], "Pragma": [ "no-cache" @@ -1678,20 +10608,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f574c196-cc9d-4fbd-a247-dbac92ca8fac" + "3c535aa7-4f25-40af-9352-b4c61794764e" ], "request-id": [ - "f574c196-cc9d-4fbd-a247-dbac92ca8fac" + "3c535aa7-4f25-40af-9352-b4c61794764e" ], "elapsed-time": [ - "231" + "727" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1700,29 +10630,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14855" ], "x-ms-correlation-request-id": [ - "c4b32a80-51ed-460f-a7d6-414b9c3e5054" + "4585f1d2-b8a8-48dc-8cad-311267d7539f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060738Z:c4b32a80-51ed-460f-a7d6-414b9c3e5054" + "CENTRALUS:20171214T225542Z:4585f1d2-b8a8-48dc-8cad-311267d7539f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bf0836d4-6c3f-463b-9301-77bdd61121f8" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1734,7 +10670,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:08:08 GMT" + "Thu, 14 Dec 2017 22:55:53 GMT" ], "Pragma": [ "no-cache" @@ -1743,20 +10679,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "11da2e47-a21c-4269-b902-d0ca18a9a37d" + "bf0836d4-6c3f-463b-9301-77bdd61121f8" ], "request-id": [ - "11da2e47-a21c-4269-b902-d0ca18a9a37d" + "bf0836d4-6c3f-463b-9301-77bdd61121f8" ], "elapsed-time": [ - "254" + "1182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1765,29 +10701,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14854" ], "x-ms-correlation-request-id": [ - "752354e2-87ae-4e6a-b5ca-69aa2ed03243" + "6b904197-ea50-4fed-af41-70d4bfc556eb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060808Z:752354e2-87ae-4e6a-b5ca-69aa2ed03243" + "CENTRALUS:20171214T225553Z:6b904197-ea50-4fed-af41-70d4bfc556eb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b67277e2-f812-4495-868e-527f7e7f9c1b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1799,7 +10741,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:08:39 GMT" + "Thu, 14 Dec 2017 22:56:12 GMT" ], "Pragma": [ "no-cache" @@ -1808,20 +10750,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "93d4b0b7-3806-4f50-83bb-a6c4d11b0e7c" + "b67277e2-f812-4495-868e-527f7e7f9c1b" ], "request-id": [ - "93d4b0b7-3806-4f50-83bb-a6c4d11b0e7c" + "b67277e2-f812-4495-868e-527f7e7f9c1b" ], "elapsed-time": [ - "234" + "8066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,29 +10772,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14853" ], "x-ms-correlation-request-id": [ - "d459a760-9d14-4324-a9bd-51a4d5dafdab" + "df3c4a87-732e-4dad-8ce9-f39fde0324da" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060839Z:d459a760-9d14-4324-a9bd-51a4d5dafdab" + "CENTRALUS:20171214T225612Z:df3c4a87-732e-4dad-8ce9-f39fde0324da" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "32ef493e-8748-461d-973e-e30d83f44b36" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1864,7 +10812,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:09:09 GMT" + "Thu, 14 Dec 2017 22:56:22 GMT" ], "Pragma": [ "no-cache" @@ -1873,20 +10821,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7c9777df-c662-4e9d-a16e-06a0e21568fd" + "32ef493e-8748-461d-973e-e30d83f44b36" ], "request-id": [ - "7c9777df-c662-4e9d-a16e-06a0e21568fd" + "32ef493e-8748-461d-973e-e30d83f44b36" ], "elapsed-time": [ - "74" + "79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1895,29 +10843,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14852" ], "x-ms-correlation-request-id": [ - "b73325bf-5d4b-4c42-99ed-f25114576b8e" + "d8a60f6b-53ba-42c3-a2a4-36c1f749149a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060909Z:b73325bf-5d4b-4c42-99ed-f25114576b8e" + "CENTRALUS:20171214T225622Z:d8a60f6b-53ba-42c3-a2a4-36c1f749149a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "907c23c3-d6ee-44c2-a170-73d9b65ba759" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1929,7 +10883,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:09:39 GMT" + "Thu, 14 Dec 2017 22:56:32 GMT" ], "Pragma": [ "no-cache" @@ -1938,20 +10892,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a9a6b46a-e79f-42e3-8787-0749ef8894fa" + "907c23c3-d6ee-44c2-a170-73d9b65ba759" ], "request-id": [ - "a9a6b46a-e79f-42e3-8787-0749ef8894fa" + "907c23c3-d6ee-44c2-a170-73d9b65ba759" ], "elapsed-time": [ - "483" + "506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1960,29 +10914,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14851" ], "x-ms-correlation-request-id": [ - "7d5b8eb5-f819-4402-9ec5-58457491e9f3" + "b73ae5a1-e62a-4216-9d48-81a8ccd3d382" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T060940Z:7d5b8eb5-f819-4402-9ec5-58457491e9f3" + "CENTRALUS:20171214T225632Z:b73ae5a1-e62a-4216-9d48-81a8ccd3d382" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "af8a9981-920d-459c-9c2a-53e3f84710f7" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1994,7 +10954,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:10:09 GMT" + "Thu, 14 Dec 2017 22:56:42 GMT" ], "Pragma": [ "no-cache" @@ -2003,20 +10963,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d29b97fe-5f3c-4e45-8bda-19c76afed3da" + "af8a9981-920d-459c-9c2a-53e3f84710f7" ], "request-id": [ - "d29b97fe-5f3c-4e45-8bda-19c76afed3da" + "af8a9981-920d-459c-9c2a-53e3f84710f7" ], "elapsed-time": [ - "76" + "205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2025,29 +10985,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14850" ], "x-ms-correlation-request-id": [ - "64e6a852-221a-4427-9912-2d2712f22926" + "5b7a5677-336a-4308-bfbb-3770a800dc9b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061010Z:64e6a852-221a-4427-9912-2d2712f22926" + "CENTRALUS:20171214T225643Z:5b7a5677-336a-4308-bfbb-3770a800dc9b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b07e0d9b-77b7-4fc6-94e7-e1e37e4fe533" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2059,7 +11025,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:10:40 GMT" + "Thu, 14 Dec 2017 22:56:53 GMT" ], "Pragma": [ "no-cache" @@ -2068,20 +11034,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3aff562d-864d-427a-9653-c7e78887d11e" + "b07e0d9b-77b7-4fc6-94e7-e1e37e4fe533" ], "request-id": [ - "3aff562d-864d-427a-9653-c7e78887d11e" + "b07e0d9b-77b7-4fc6-94e7-e1e37e4fe533" ], "elapsed-time": [ - "126" + "460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2090,29 +11056,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14849" ], "x-ms-correlation-request-id": [ - "4a337b81-609f-4277-b65a-0d2863130326" + "38b77c66-c68f-4c34-a2a5-bddca575dda9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061040Z:4a337b81-609f-4277-b65a-0d2863130326" + "CENTRALUS:20171214T225653Z:38b77c66-c68f-4c34-a2a5-bddca575dda9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a7581594-f6ba-43c9-92c1-f24eb0dc928b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2124,7 +11096,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:11:10 GMT" + "Thu, 14 Dec 2017 22:57:03 GMT" ], "Pragma": [ "no-cache" @@ -2133,20 +11105,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A58.4452292Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "7a52c7b5-7d5c-487b-a628-b7dea7b1fcc0" + "a7581594-f6ba-43c9-92c1-f24eb0dc928b" ], "request-id": [ - "7a52c7b5-7d5c-487b-a628-b7dea7b1fcc0" + "a7581594-f6ba-43c9-92c1-f24eb0dc928b" ], "elapsed-time": [ - "98" + "83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2155,29 +11127,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14848" ], "x-ms-correlation-request-id": [ - "a7c6be67-10b3-4c47-a939-2e8f50e1587d" + "1d121df4-29bb-4268-9b61-6d34c220b4e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061110Z:a7c6be67-10b3-4c47-a939-2e8f50e1587d" + "CENTRALUS:20171214T225703Z:1d121df4-29bb-4268-9b61-6d34c220b4e2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "92b7d40a-e338-4311-8987-ec88777c699b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2189,7 +11167,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:11:42 GMT" + "Thu, 14 Dec 2017 22:57:14 GMT" ], "Pragma": [ "no-cache" @@ -2198,20 +11176,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3490d45c-4d3f-47ff-becd-3ce7a3020bc0" + "92b7d40a-e338-4311-8987-ec88777c699b" ], "request-id": [ - "3490d45c-4d3f-47ff-becd-3ce7a3020bc0" + "92b7d40a-e338-4311-8987-ec88777c699b" ], "elapsed-time": [ - "133" + "524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2220,29 +11198,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14847" ], "x-ms-correlation-request-id": [ - "16a0262b-683f-4491-8a11-07ad696c5bf3" + "74d9522c-6107-42f6-a683-1ddf14e29073" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061143Z:16a0262b-683f-4491-8a11-07ad696c5bf3" + "CENTRALUS:20171214T225714Z:74d9522c-6107-42f6-a683-1ddf14e29073" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4c244d25-d798-4be1-8072-4d3729163955" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2254,7 +11238,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:12:13 GMT" + "Thu, 14 Dec 2017 22:57:25 GMT" ], "Pragma": [ "no-cache" @@ -2263,20 +11247,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "556b7a5a-21df-4ffc-8420-418422ee950a" + "4c244d25-d798-4be1-8072-4d3729163955" ], "request-id": [ - "556b7a5a-21df-4ffc-8420-418422ee950a" + "4c244d25-d798-4be1-8072-4d3729163955" ], "elapsed-time": [ - "82" + "1271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2285,29 +11269,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14846" ], "x-ms-correlation-request-id": [ - "9822f14e-5c62-4426-affc-85b68bb847a0" + "d88752bb-a1ed-4464-909d-df56f9017ff3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061213Z:9822f14e-5c62-4426-affc-85b68bb847a0" + "CENTRALUS:20171214T225726Z:d88752bb-a1ed-4464-909d-df56f9017ff3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3e866b76-aa5c-42bb-921f-d41df4906d9b" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2319,7 +11309,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:12:43 GMT" + "Thu, 14 Dec 2017 22:57:36 GMT" ], "Pragma": [ "no-cache" @@ -2328,20 +11318,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "17b4cafd-c226-4c0d-a3e4-e7e7c68d8a65" + "3e866b76-aa5c-42bb-921f-d41df4906d9b" ], "request-id": [ - "17b4cafd-c226-4c0d-a3e4-e7e7c68d8a65" + "3e866b76-aa5c-42bb-921f-d41df4906d9b" ], "elapsed-time": [ - "127" + "64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2350,29 +11340,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14845" ], "x-ms-correlation-request-id": [ - "8e8ea220-c3c9-47ef-afd9-6f1a7f749ac4" + "64869df7-979d-439e-a628-d88fd8766ac6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061243Z:8e8ea220-c3c9-47ef-afd9-6f1a7f749ac4" + "CENTRALUS:20171214T225736Z:64869df7-979d-439e-a628-d88fd8766ac6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8e3b26b5-5f20-4a9b-b90a-8a29e1eb666e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2384,7 +11380,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:13:13 GMT" + "Thu, 14 Dec 2017 22:57:46 GMT" ], "Pragma": [ "no-cache" @@ -2393,20 +11389,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9b213cd3-1c8c-417f-b427-b87c67c57a81" + "8e3b26b5-5f20-4a9b-b90a-8a29e1eb666e" ], "request-id": [ - "9b213cd3-1c8c-417f-b427-b87c67c57a81" + "8e3b26b5-5f20-4a9b-b90a-8a29e1eb666e" ], "elapsed-time": [ - "107" + "62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2415,29 +11411,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14844" ], "x-ms-correlation-request-id": [ - "e681452a-8569-48b5-b614-033477e9c4ff" + "e4e4c45d-bb3c-4219-9520-d7112d2a861d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061313Z:e681452a-8569-48b5-b614-033477e9c4ff" + "CENTRALUS:20171214T225746Z:e4e4c45d-bb3c-4219-9520-d7112d2a861d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bbf332d5-939c-4436-84f9-00bfb8ced4d0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2449,7 +11451,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:13:43 GMT" + "Thu, 14 Dec 2017 22:57:58 GMT" ], "Pragma": [ "no-cache" @@ -2458,20 +11460,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a1012426-a36a-4e68-a5dd-8f79b23f9539" + "bbf332d5-939c-4436-84f9-00bfb8ced4d0" ], "request-id": [ - "a1012426-a36a-4e68-a5dd-8f79b23f9539" + "bbf332d5-939c-4436-84f9-00bfb8ced4d0" ], "elapsed-time": [ - "75" + "1632" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,29 +11482,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14843" ], "x-ms-correlation-request-id": [ - "b9d487b1-be36-458a-b92a-8da85aa12575" + "46899c97-497b-4b7e-bf24-2e76505a899a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061343Z:b9d487b1-be36-458a-b92a-8da85aa12575" + "CENTRALUS:20171214T225758Z:46899c97-497b-4b7e-bf24-2e76505a899a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5a85d841-8bb4-4be7-a965-99a943a8d425" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2514,7 +11522,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:14:13 GMT" + "Thu, 14 Dec 2017 22:58:08 GMT" ], "Pragma": [ "no-cache" @@ -2523,20 +11531,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "784a9087-9dc5-4255-8e7b-03bf5970b85c" + "5a85d841-8bb4-4be7-a965-99a943a8d425" ], "request-id": [ - "784a9087-9dc5-4255-8e7b-03bf5970b85c" + "5a85d841-8bb4-4be7-a965-99a943a8d425" ], "elapsed-time": [ - "106" + "92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2545,29 +11553,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14842" ], "x-ms-correlation-request-id": [ - "2d962c81-de39-4602-aca4-2a8e6b314781" + "35c06dd7-d2ba-46b1-b90a-1dc8ee995d9d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061414Z:2d962c81-de39-4602-aca4-2a8e6b314781" + "CENTRALUS:20171214T225808Z:35c06dd7-d2ba-46b1-b90a-1dc8ee995d9d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7bee471c-08c1-4a58-afca-4d08f260cfb6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2579,7 +11593,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:14:43 GMT" + "Thu, 14 Dec 2017 22:58:18 GMT" ], "Pragma": [ "no-cache" @@ -2588,20 +11602,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "054687dc-1016-4274-aff1-33209d2331c9" + "7bee471c-08c1-4a58-afca-4d08f260cfb6" ], "request-id": [ - "054687dc-1016-4274-aff1-33209d2331c9" + "7bee471c-08c1-4a58-afca-4d08f260cfb6" ], "elapsed-time": [ - "61" + "118" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2610,29 +11624,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14841" ], "x-ms-correlation-request-id": [ - "a9682f2d-47fa-45f5-90f4-ce8656476740" + "cceff2c7-9207-4306-b59a-8d125fe280d4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061444Z:a9682f2d-47fa-45f5-90f4-ce8656476740" + "CENTRALUS:20171214T225818Z:cceff2c7-9207-4306-b59a-8d125fe280d4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6571472d-85fa-4337-83bc-893d30c5fa0e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2644,7 +11664,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:15:14 GMT" + "Thu, 14 Dec 2017 22:58:28 GMT" ], "Pragma": [ "no-cache" @@ -2653,20 +11673,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "e7df233f-bd9e-4a8f-bb05-e4e1b08fda65" + "6571472d-85fa-4337-83bc-893d30c5fa0e" ], "request-id": [ - "e7df233f-bd9e-4a8f-bb05-e4e1b08fda65" + "6571472d-85fa-4337-83bc-893d30c5fa0e" ], "elapsed-time": [ - "57" + "208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2675,29 +11695,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14840" ], "x-ms-correlation-request-id": [ - "8346cb27-30fa-43fb-aa07-dd4bfb1a6d0e" + "06fa1010-160e-483c-9067-6a41d196abcf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061514Z:8346cb27-30fa-43fb-aa07-dd4bfb1a6d0e" + "CENTRALUS:20171214T225828Z:06fa1010-160e-483c-9067-6a41d196abcf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c742f402-e1d6-433d-9ee1-171bda80b718" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2709,7 +11735,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:15:44 GMT" + "Thu, 14 Dec 2017 22:58:38 GMT" ], "Pragma": [ "no-cache" @@ -2718,20 +11744,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "feb4b73f-14e3-4314-bd7b-54197c63a905" + "c742f402-e1d6-433d-9ee1-171bda80b718" ], "request-id": [ - "feb4b73f-14e3-4314-bd7b-54197c63a905" + "c742f402-e1d6-433d-9ee1-171bda80b718" ], "elapsed-time": [ - "77" + "75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2740,29 +11766,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14839" ], "x-ms-correlation-request-id": [ - "3d9b6fec-bafd-4fa2-899b-a99b82e2f258" + "622fd549-9385-47b9-8fec-0f83adb09241" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061544Z:3d9b6fec-bafd-4fa2-899b-a99b82e2f258" + "CENTRALUS:20171214T225839Z:622fd549-9385-47b9-8fec-0f83adb09241" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1a800bd0-65d0-4ec4-bcc0-b75b983c82e8" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2774,7 +11806,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:16:14 GMT" + "Thu, 14 Dec 2017 22:58:50 GMT" ], "Pragma": [ "no-cache" @@ -2783,20 +11815,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d1143f20-2eb4-42ee-b16e-995238355800" + "1a800bd0-65d0-4ec4-bcc0-b75b983c82e8" ], "request-id": [ - "d1143f20-2eb4-42ee-b16e-995238355800" + "1a800bd0-65d0-4ec4-bcc0-b75b983c82e8" ], "elapsed-time": [ - "244" + "2052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2805,29 +11837,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14838" ], "x-ms-correlation-request-id": [ - "6033f897-02ac-4361-bc3c-69a3da4cd3f4" + "d253df94-2a78-4a23-8da0-677bc9818bae" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061615Z:6033f897-02ac-4361-bc3c-69a3da4cd3f4" + "CENTRALUS:20171214T225851Z:d253df94-2a78-4a23-8da0-677bc9818bae" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "418755ca-e845-45c3-a463-a667f1adea88" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2839,7 +11877,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:16:45 GMT" + "Thu, 14 Dec 2017 22:59:04 GMT" ], "Pragma": [ "no-cache" @@ -2848,20 +11886,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2d39ff66-4eb2-4774-b396-cd1417896adb" + "418755ca-e845-45c3-a463-a667f1adea88" ], "request-id": [ - "2d39ff66-4eb2-4774-b396-cd1417896adb" + "418755ca-e845-45c3-a463-a667f1adea88" ], "elapsed-time": [ - "117" + "3969" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2870,29 +11908,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14837" ], "x-ms-correlation-request-id": [ - "9110309b-bead-4d42-b6b9-d2829ba3c6b7" + "4de37eb3-e536-426d-8c27-a3bf47af0d16" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061645Z:9110309b-bead-4d42-b6b9-d2829ba3c6b7" + "CENTRALUS:20171214T225905Z:4de37eb3-e536-426d-8c27-a3bf47af0d16" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "54c250c2-a92c-40ce-9b56-794f04cfae72" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2904,7 +11948,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:17:15 GMT" + "Thu, 14 Dec 2017 22:59:15 GMT" ], "Pragma": [ "no-cache" @@ -2913,20 +11957,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "47d37850-de27-48a1-a530-16b848141fd6" + "54c250c2-a92c-40ce-9b56-794f04cfae72" ], "request-id": [ - "47d37850-de27-48a1-a530-16b848141fd6" + "54c250c2-a92c-40ce-9b56-794f04cfae72" ], "elapsed-time": [ - "107" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2935,29 +11979,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14836" ], "x-ms-correlation-request-id": [ - "ab7b4784-9e14-4f80-a713-79ac392dd740" + "9d2c09cd-a40c-4934-849e-e639b3aa3a54" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061715Z:ab7b4784-9e14-4f80-a713-79ac392dd740" + "CENTRALUS:20171214T225915Z:9d2c09cd-a40c-4934-849e-e639b3aa3a54" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4fccaf8b-2e07-4232-b2eb-67c3d6390418" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2969,7 +12019,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:17:45 GMT" + "Thu, 14 Dec 2017 22:59:25 GMT" ], "Pragma": [ "no-cache" @@ -2978,20 +12028,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5865e025-f07a-4738-9363-04e813f7cc49" + "4fccaf8b-2e07-4232-b2eb-67c3d6390418" ], "request-id": [ - "5865e025-f07a-4738-9363-04e813f7cc49" + "4fccaf8b-2e07-4232-b2eb-67c3d6390418" ], "elapsed-time": [ - "92" + "61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,29 +12050,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14835" ], "x-ms-correlation-request-id": [ - "dc9315ac-9b62-42db-be7c-13ebb7f2e4fa" + "c056992c-bfb9-451f-aec5-de8eca4d6a49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061745Z:dc9315ac-9b62-42db-be7c-13ebb7f2e4fa" + "CENTRALUS:20171214T225925Z:c056992c-bfb9-451f-aec5-de8eca4d6a49" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3240247f-798b-4363-bbf3-e2cc94b38f91" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3034,7 +12090,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:18:16 GMT" + "Thu, 14 Dec 2017 22:59:35 GMT" ], "Pragma": [ "no-cache" @@ -3043,20 +12099,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "fc593539-3c3e-4473-94ff-d0ceffdfa74a" + "3240247f-798b-4363-bbf3-e2cc94b38f91" ], "request-id": [ - "fc593539-3c3e-4473-94ff-d0ceffdfa74a" + "3240247f-798b-4363-bbf3-e2cc94b38f91" ], "elapsed-time": [ - "185" + "85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3065,29 +12121,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14834" ], "x-ms-correlation-request-id": [ - "53910e11-66e2-4b8e-b375-e3a13ec1900d" + "8c99edcc-2710-4e86-b679-dd9cd98a6a82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061816Z:53910e11-66e2-4b8e-b375-e3a13ec1900d" + "CENTRALUS:20171214T225935Z:8c99edcc-2710-4e86-b679-dd9cd98a6a82" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bbadf9ff-aeae-449b-9656-3d8797b8673c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3099,7 +12161,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:18:46 GMT" + "Thu, 14 Dec 2017 22:59:47 GMT" ], "Pragma": [ "no-cache" @@ -3108,20 +12170,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "188cc64c-d890-4fa6-93a8-cf8ec2bcf939" + "bbadf9ff-aeae-449b-9656-3d8797b8673c" ], "request-id": [ - "188cc64c-d890-4fa6-93a8-cf8ec2bcf939" + "bbadf9ff-aeae-449b-9656-3d8797b8673c" ], "elapsed-time": [ - "120" + "1135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3130,29 +12192,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14833" ], "x-ms-correlation-request-id": [ - "52f99c73-e2c1-4e03-a9c6-dc618ef2d897" + "8a04f761-c87e-4dd3-a77c-ff0a94294c6e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061846Z:52f99c73-e2c1-4e03-a9c6-dc618ef2d897" + "CENTRALUS:20171214T225947Z:8a04f761-c87e-4dd3-a77c-ff0a94294c6e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ad52a097-5533-4651-a462-e23631dddb4c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3164,7 +12232,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:19:16 GMT" + "Thu, 14 Dec 2017 22:59:56 GMT" ], "Pragma": [ "no-cache" @@ -3173,20 +12241,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b2d14f27-2240-43f4-a0c3-fb4c031f917f" + "ad52a097-5533-4651-a462-e23631dddb4c" ], "request-id": [ - "b2d14f27-2240-43f4-a0c3-fb4c031f917f" + "ad52a097-5533-4651-a462-e23631dddb4c" ], "elapsed-time": [ - "108" + "77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3195,29 +12263,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14832" ], "x-ms-correlation-request-id": [ - "44562585-48ee-4b98-99f8-538674f92207" + "0f94cb87-9210-4985-b35d-02337326c5cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061916Z:44562585-48ee-4b98-99f8-538674f92207" + "CENTRALUS:20171214T225957Z:0f94cb87-9210-4985-b35d-02337326c5cd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ce8aca6a-4f64-4a68-b4f4-a94c5f58103e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3229,7 +12303,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:19:45 GMT" + "Thu, 14 Dec 2017 23:00:08 GMT" ], "Pragma": [ "no-cache" @@ -3238,20 +12312,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "ea2fddd1-59a4-4a0f-ac46-9e93d400f04b" + "ce8aca6a-4f64-4a68-b4f4-a94c5f58103e" ], "request-id": [ - "ea2fddd1-59a4-4a0f-ac46-9e93d400f04b" + "ce8aca6a-4f64-4a68-b4f4-a94c5f58103e" ], "elapsed-time": [ - "105" + "1024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3260,29 +12334,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14831" ], "x-ms-correlation-request-id": [ - "bec3cdfd-ea3b-4387-a9c8-097c8466d621" + "52566bce-922a-4ab4-8c97-83a36cd2f574" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T061946Z:bec3cdfd-ea3b-4387-a9c8-097c8466d621" + "CENTRALUS:20171214T230008Z:52566bce-922a-4ab4-8c97-83a36cd2f574" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "217d81a0-3e3a-4920-9edb-d1752ab1a925" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3294,7 +12374,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:20:16 GMT" + "Thu, 14 Dec 2017 23:00:18 GMT" ], "Pragma": [ "no-cache" @@ -3303,20 +12383,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c140c8b0-615f-426e-b769-c0e4797f6391" + "217d81a0-3e3a-4920-9edb-d1752ab1a925" ], "request-id": [ - "c140c8b0-615f-426e-b769-c0e4797f6391" + "217d81a0-3e3a-4920-9edb-d1752ab1a925" ], "elapsed-time": [ - "282" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3325,29 +12405,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14830" ], "x-ms-correlation-request-id": [ - "f7424155-878e-4f62-955c-9cc34aa7e987" + "db1cb1c7-a7cf-4e24-a706-e4977f8e2d81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062017Z:f7424155-878e-4f62-955c-9cc34aa7e987" + "CENTRALUS:20171214T230018Z:db1cb1c7-a7cf-4e24-a706-e4977f8e2d81" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "27a61e95-20ce-4cc9-bd24-bab24c41d256" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3359,7 +12445,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:20:46 GMT" + "Thu, 14 Dec 2017 23:00:28 GMT" ], "Pragma": [ "no-cache" @@ -3368,20 +12454,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8995921f-d0fd-47c2-b28d-d2a6062cea57" + "27a61e95-20ce-4cc9-bd24-bab24c41d256" ], "request-id": [ - "8995921f-d0fd-47c2-b28d-d2a6062cea57" + "27a61e95-20ce-4cc9-bd24-bab24c41d256" ], "elapsed-time": [ - "147" + "77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3390,29 +12476,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14829" ], "x-ms-correlation-request-id": [ - "c65fa072-b1c3-4255-8bce-67e2cbedf4a2" + "8c9de3c9-4e8c-4d30-8b67-af54127e3772" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062047Z:c65fa072-b1c3-4255-8bce-67e2cbedf4a2" + "CENTRALUS:20171214T230028Z:8c9de3c9-4e8c-4d30-8b67-af54127e3772" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ed9812d1-40c6-4021-b7e7-d5f656c64904" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3424,7 +12516,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:21:17 GMT" + "Thu, 14 Dec 2017 23:00:38 GMT" ], "Pragma": [ "no-cache" @@ -3433,20 +12525,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "9dd4c3e3-243a-4768-a33d-db69f0ee784b" + "ed9812d1-40c6-4021-b7e7-d5f656c64904" ], "request-id": [ - "9dd4c3e3-243a-4768-a33d-db69f0ee784b" + "ed9812d1-40c6-4021-b7e7-d5f656c64904" ], "elapsed-time": [ - "79" + "913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3455,29 +12547,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14828" ], "x-ms-correlation-request-id": [ - "4e67994a-3598-40ca-9840-69405ab96ce1" + "4766a540-8969-4d2a-8a73-a9418843113d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062117Z:4e67994a-3598-40ca-9840-69405ab96ce1" + "CENTRALUS:20171214T230039Z:4766a540-8969-4d2a-8a73-a9418843113d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "2b161c08-16bc-4686-87d1-9c43f6a0c5ea" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3489,7 +12587,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:21:47 GMT" + "Thu, 14 Dec 2017 23:00:49 GMT" ], "Pragma": [ "no-cache" @@ -3498,20 +12596,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f4cab68f-e165-493d-9da7-c68b60ad7fe1" + "2b161c08-16bc-4686-87d1-9c43f6a0c5ea" ], "request-id": [ - "f4cab68f-e165-493d-9da7-c68b60ad7fe1" + "2b161c08-16bc-4686-87d1-9c43f6a0c5ea" ], "elapsed-time": [ - "106" + "77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3520,29 +12618,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14827" ], "x-ms-correlation-request-id": [ - "a489775c-8565-4470-bce8-22340f6b3528" + "c189f289-1e8a-43bb-9267-10f5bf147f01" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062147Z:a489775c-8565-4470-bce8-22340f6b3528" + "CENTRALUS:20171214T230050Z:c189f289-1e8a-43bb-9267-10f5bf147f01" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b983f6c9-64ec-4455-b674-a5731d6ddb65" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3554,7 +12658,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:22:18 GMT" + "Thu, 14 Dec 2017 23:00:59 GMT" ], "Pragma": [ "no-cache" @@ -3563,20 +12667,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "5c0c656a-c8d4-438b-b47e-ea166f99a8ed" + "b983f6c9-64ec-4455-b674-a5731d6ddb65" ], "request-id": [ - "5c0c656a-c8d4-438b-b47e-ea166f99a8ed" + "b983f6c9-64ec-4455-b674-a5731d6ddb65" ], "elapsed-time": [ - "166" + "69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3585,29 +12689,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14826" ], "x-ms-correlation-request-id": [ - "89e61f7d-5f61-4211-9359-c791cc97c3e4" + "c2bb2554-5efb-4d9e-b267-61f8b76b2938" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062218Z:89e61f7d-5f61-4211-9359-c791cc97c3e4" + "CENTRALUS:20171214T230100Z:c2bb2554-5efb-4d9e-b267-61f8b76b2938" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3869703f-3cd2-407d-95d7-56da5ea85d7e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3619,7 +12729,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:22:48 GMT" + "Thu, 14 Dec 2017 23:01:10 GMT" ], "Pragma": [ "no-cache" @@ -3628,20 +12738,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "358227d3-5cca-495d-94f3-921cb803fdad" + "3869703f-3cd2-407d-95d7-56da5ea85d7e" ], "request-id": [ - "358227d3-5cca-495d-94f3-921cb803fdad" + "3869703f-3cd2-407d-95d7-56da5ea85d7e" ], "elapsed-time": [ - "214" + "231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3650,29 +12760,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14825" ], "x-ms-correlation-request-id": [ - "5b742e82-74c6-45c0-b70d-2ea6d934b4b4" + "29717cf2-6b5f-4a1f-849b-258d7e8cec27" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062248Z:5b742e82-74c6-45c0-b70d-2ea6d934b4b4" + "CENTRALUS:20171214T230110Z:29717cf2-6b5f-4a1f-849b-258d7e8cec27" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e1b57c22-6260-421d-a967-172e7597e62a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3684,7 +12800,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:23:18 GMT" + "Thu, 14 Dec 2017 23:01:20 GMT" ], "Pragma": [ "no-cache" @@ -3693,20 +12809,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f4852d35-1437-4be2-89ad-f38f2d367083" + "e1b57c22-6260-421d-a967-172e7597e62a" ], "request-id": [ - "f4852d35-1437-4be2-89ad-f38f2d367083" + "e1b57c22-6260-421d-a967-172e7597e62a" ], "elapsed-time": [ - "168" + "72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3715,29 +12831,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14824" ], "x-ms-correlation-request-id": [ - "3384ea16-4840-4b65-af67-aa3954bcd630" + "2218a130-961e-4348-8393-a85598b378ac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062318Z:3384ea16-4840-4b65-af67-aa3954bcd630" + "CENTRALUS:20171214T230120Z:2218a130-961e-4348-8393-a85598b378ac" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4a980431-7386-465e-a6ec-66be04ff68b1" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3749,7 +12871,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:23:49 GMT" + "Thu, 14 Dec 2017 23:01:29 GMT" ], "Pragma": [ "no-cache" @@ -3758,20 +12880,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1d617266-8fb6-4089-96ab-1c0a860be9fc" + "4a980431-7386-465e-a6ec-66be04ff68b1" ], "request-id": [ - "1d617266-8fb6-4089-96ab-1c0a860be9fc" + "4a980431-7386-465e-a6ec-66be04ff68b1" ], "elapsed-time": [ - "126" + "76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3780,29 +12902,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14823" ], "x-ms-correlation-request-id": [ - "25b0ded5-8970-4694-81c4-ae2c020f4fa7" + "4deb525d-2190-410e-baea-c4af8fce3e14" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062349Z:25b0ded5-8970-4694-81c4-ae2c020f4fa7" + "CENTRALUS:20171214T230130Z:4deb525d-2190-410e-baea-c4af8fce3e14" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a94ebb2b-d1a1-43ce-b3cc-b0691862bb32" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3814,7 +12942,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:24:22 GMT" + "Thu, 14 Dec 2017 23:01:46 GMT" ], "Pragma": [ "no-cache" @@ -3823,20 +12951,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8c6507da-6335-49b4-bc5d-f51615c20e46" + "a94ebb2b-d1a1-43ce-b3cc-b0691862bb32" ], "request-id": [ - "8c6507da-6335-49b4-bc5d-f51615c20e46" + "a94ebb2b-d1a1-43ce-b3cc-b0691862bb32" ], "elapsed-time": [ - "231" + "5582" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3845,29 +12973,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14822" ], "x-ms-correlation-request-id": [ - "f80b462d-41fd-44c2-83b1-1804fa14ad70" + "02e03939-132c-4d2e-b067-8fea27e798b2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062422Z:f80b462d-41fd-44c2-83b1-1804fa14ad70" + "CENTRALUS:20171214T230146Z:02e03939-132c-4d2e-b067-8fea27e798b2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1779bfca-5e11-4fbd-aa47-44651c9d4f6e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3879,7 +13013,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:24:52 GMT" + "Thu, 14 Dec 2017 23:01:55 GMT" ], "Pragma": [ "no-cache" @@ -3888,20 +13022,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "09e6048b-e689-439c-9ebf-9ac73452b961" + "1779bfca-5e11-4fbd-aa47-44651c9d4f6e" ], "request-id": [ - "09e6048b-e689-439c-9ebf-9ac73452b961" + "1779bfca-5e11-4fbd-aa47-44651c9d4f6e" ], "elapsed-time": [ - "498" + "87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3910,29 +13044,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14821" ], "x-ms-correlation-request-id": [ - "8acf55f4-d41c-4f5e-9e33-ad9115278bd8" + "51e50f0d-942d-4391-8502-b215494259fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062453Z:8acf55f4-d41c-4f5e-9e33-ad9115278bd8" + "CENTRALUS:20171214T230156Z:51e50f0d-942d-4391-8502-b215494259fb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c219eaca-38f7-44ae-83b4-da9cba7f8968" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3944,7 +13084,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:25:23 GMT" + "Thu, 14 Dec 2017 23:02:06 GMT" ], "Pragma": [ "no-cache" @@ -3953,20 +13093,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "34911e5a-3861-4cc9-981d-fbac19498cfa" + "c219eaca-38f7-44ae-83b4-da9cba7f8968" ], "request-id": [ - "34911e5a-3861-4cc9-981d-fbac19498cfa" + "c219eaca-38f7-44ae-83b4-da9cba7f8968" ], "elapsed-time": [ - "72" + "80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3975,29 +13115,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14820" ], "x-ms-correlation-request-id": [ - "7163eae6-3beb-4068-8b43-44c897426531" + "fc6c3f73-5cf4-4c87-8681-c5a941ec4d80" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062523Z:7163eae6-3beb-4068-8b43-44c897426531" + "CENTRALUS:20171214T230206Z:fc6c3f73-5cf4-4c87-8681-c5a941ec4d80" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e8bc0e27-ce65-4cb5-8f84-5aec738d4b3e" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4009,7 +13155,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:25:53 GMT" + "Thu, 14 Dec 2017 23:02:18 GMT" ], "Pragma": [ "no-cache" @@ -4018,20 +13164,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "1330d162-2a65-43fd-9159-9088739e165f" + "e8bc0e27-ce65-4cb5-8f84-5aec738d4b3e" ], "request-id": [ - "1330d162-2a65-43fd-9159-9088739e165f" + "e8bc0e27-ce65-4cb5-8f84-5aec738d4b3e" ], "elapsed-time": [ - "80" + "1891" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4040,29 +13186,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14819" ], "x-ms-correlation-request-id": [ - "d8beee92-ec60-4c99-8042-d2bea6a0d5fc" + "938af551-35f3-4571-8c81-462fcfe0a6a4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062553Z:d8beee92-ec60-4c99-8042-d2bea6a0d5fc" + "CENTRALUS:20171214T230218Z:938af551-35f3-4571-8c81-462fcfe0a6a4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d546d5ed-5f07-4c87-87a1-542223513628" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4074,7 +13226,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:26:23 GMT" + "Thu, 14 Dec 2017 23:02:29 GMT" ], "Pragma": [ "no-cache" @@ -4083,20 +13235,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6bdc641d-c3e5-43ed-8caf-e36a6f06fbbd" + "d546d5ed-5f07-4c87-87a1-542223513628" ], "request-id": [ - "6bdc641d-c3e5-43ed-8caf-e36a6f06fbbd" + "d546d5ed-5f07-4c87-87a1-542223513628" ], "elapsed-time": [ - "141" + "291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4105,29 +13257,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14818" ], "x-ms-correlation-request-id": [ - "ff329ac0-5372-4172-ab50-b8bcb50330c9" + "31b88f43-5486-429f-ae6e-e4b9f73d2c8d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062623Z:ff329ac0-5372-4172-ab50-b8bcb50330c9" + "CENTRALUS:20171214T230229Z:31b88f43-5486-429f-ae6e-e4b9f73d2c8d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "624feec4-6645-4237-89b8-5537902af15a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4139,7 +13297,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:26:53 GMT" + "Thu, 14 Dec 2017 23:02:39 GMT" ], "Pragma": [ "no-cache" @@ -4148,20 +13306,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "bbc65e10-a3fb-45d5-8238-faaa8cbf365a" + "624feec4-6645-4237-89b8-5537902af15a" ], "request-id": [ - "bbc65e10-a3fb-45d5-8238-faaa8cbf365a" + "624feec4-6645-4237-89b8-5537902af15a" ], "elapsed-time": [ - "80" + "62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4170,29 +13328,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14817" ], "x-ms-correlation-request-id": [ - "cf5352c4-8f6b-4488-85ac-14c16508a7c2" + "8947ea4b-9ec1-424d-ac65-a45956456161" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062653Z:cf5352c4-8f6b-4488-85ac-14c16508a7c2" + "CENTRALUS:20171214T230239Z:8947ea4b-9ec1-424d-ac65-a45956456161" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c0c0c9b3-0dbe-468e-9582-707e86c4c18f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4204,7 +13368,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:27:23 GMT" + "Thu, 14 Dec 2017 23:02:50 GMT" ], "Pragma": [ "no-cache" @@ -4213,20 +13377,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6ee1ca84-1bf6-4ab5-aa4c-659d6a0cf455" + "c0c0c9b3-0dbe-468e-9582-707e86c4c18f" ], "request-id": [ - "6ee1ca84-1bf6-4ab5-aa4c-659d6a0cf455" + "c0c0c9b3-0dbe-468e-9582-707e86c4c18f" ], "elapsed-time": [ - "122" + "61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4235,29 +13399,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14816" ], "x-ms-correlation-request-id": [ - "ffc8f597-e893-4a9f-a1a7-ec99109a5c08" + "aea7d13c-bd15-4fd3-8622-d821879d77d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062724Z:ffc8f597-e893-4a9f-a1a7-ec99109a5c08" + "CENTRALUS:20171214T230250Z:aea7d13c-bd15-4fd3-8622-d821879d77d5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1cc53c03-eee5-4b76-b322-297dddec8dee" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4269,7 +13439,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:27:53 GMT" + "Thu, 14 Dec 2017 23:03:01 GMT" ], "Pragma": [ "no-cache" @@ -4278,20 +13448,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "73643c14-b93e-4dab-9ecc-b6c96ca315e2" + "1cc53c03-eee5-4b76-b322-297dddec8dee" ], "request-id": [ - "73643c14-b93e-4dab-9ecc-b6c96ca315e2" + "1cc53c03-eee5-4b76-b322-297dddec8dee" ], "elapsed-time": [ - "84" + "529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4300,29 +13470,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14815" ], "x-ms-correlation-request-id": [ - "0e6ab6f9-0a6b-40ea-9866-fd387001b6fa" + "426796ac-1b33-4987-bf87-96b256f5fc5a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062754Z:0e6ab6f9-0a6b-40ea-9866-fd387001b6fa" + "CENTRALUS:20171214T230301Z:426796ac-1b33-4987-bf87-96b256f5fc5a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "17e2859d-ddbd-4ce8-8375-4f9f8b7fbf04" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4334,7 +13510,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:28:24 GMT" + "Thu, 14 Dec 2017 23:03:10 GMT" ], "Pragma": [ "no-cache" @@ -4343,20 +13519,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f243ccb3-b7ee-4041-a94d-a358eb5ef0d8" + "17e2859d-ddbd-4ce8-8375-4f9f8b7fbf04" ], "request-id": [ - "f243ccb3-b7ee-4041-a94d-a358eb5ef0d8" + "17e2859d-ddbd-4ce8-8375-4f9f8b7fbf04" ], "elapsed-time": [ - "971" + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4365,29 +13541,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14814" ], "x-ms-correlation-request-id": [ - "01a82ecc-59e8-494e-983e-bf43ad39d3ba" + "ff732c49-a946-415e-84ad-3ea2025b44fb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062825Z:01a82ecc-59e8-494e-983e-bf43ad39d3ba" + "CENTRALUS:20171214T230311Z:ff732c49-a946-415e-84ad-3ea2025b44fb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "70afc127-8877-4d3e-881b-646308aad0b8" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4399,7 +13581,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:28:55 GMT" + "Thu, 14 Dec 2017 23:03:22 GMT" ], "Pragma": [ "no-cache" @@ -4408,20 +13590,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A11%3A12.7696862Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "904cce70-f080-4245-ad08-57bb4d16fdd9" + "70afc127-8877-4d3e-881b-646308aad0b8" ], "request-id": [ - "904cce70-f080-4245-ad08-57bb4d16fdd9" + "70afc127-8877-4d3e-881b-646308aad0b8" ], "elapsed-time": [ - "145" + "994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4430,29 +13612,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14813" ], "x-ms-correlation-request-id": [ - "10cb43e5-4def-405e-9f1c-5af60619f6d8" + "0cb7bc13-191b-45f5-be4f-783a691c1f10" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062856Z:10cb43e5-4def-405e-9f1c-5af60619f6d8" + "CENTRALUS:20171214T230322Z:0cb7bc13-191b-45f5-be4f-783a691c1f10" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "81cdac55-62e5-4fa3-b993-162fd87bfbfe" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4464,7 +13652,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:29:32 GMT" + "Thu, 14 Dec 2017 23:03:32 GMT" ], "Pragma": [ "no-cache" @@ -4473,20 +13661,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8991ce2a-10f3-4a96-876a-009029b4cda7" + "81cdac55-62e5-4fa3-b993-162fd87bfbfe" ], "request-id": [ - "8991ce2a-10f3-4a96-876a-009029b4cda7" + "81cdac55-62e5-4fa3-b993-162fd87bfbfe" ], "elapsed-time": [ - "125" + "71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4495,29 +13683,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14812" ], "x-ms-correlation-request-id": [ - "b00bd062-ed40-4073-88b3-c545f4eb4398" + "afbe2a9e-512c-41af-9c5c-bc6265cd231c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T062932Z:b00bd062-ed40-4073-88b3-c545f4eb4398" + "CENTRALUS:20171214T230332Z:afbe2a9e-512c-41af-9c5c-bc6265cd231c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "45ea5758-6142-4e72-8b02-8717b4a2c53a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4529,7 +13723,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:30:01 GMT" + "Thu, 14 Dec 2017 23:03:42 GMT" ], "Pragma": [ "no-cache" @@ -4538,20 +13732,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "8ec7ffbd-eff7-4430-a301-3767ae252e9b" + "45ea5758-6142-4e72-8b02-8717b4a2c53a" ], "request-id": [ - "8ec7ffbd-eff7-4430-a301-3767ae252e9b" + "45ea5758-6142-4e72-8b02-8717b4a2c53a" ], "elapsed-time": [ - "86" + "85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4560,29 +13754,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14811" ], "x-ms-correlation-request-id": [ - "6845384c-3b57-4908-91d7-4533d3050715" + "d5842980-6ea9-4e0f-9858-7c8560286b18" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063002Z:6845384c-3b57-4908-91d7-4533d3050715" + "CENTRALUS:20171214T230342Z:d5842980-6ea9-4e0f-9858-7c8560286b18" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "4181c641-35ef-4aeb-9fd2-bbe5afe4e623" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4594,7 +13794,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:30:32 GMT" + "Thu, 14 Dec 2017 23:03:52 GMT" ], "Pragma": [ "no-cache" @@ -4603,20 +13803,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d66ab891-195d-47ed-9c74-0fe47a725f34" + "4181c641-35ef-4aeb-9fd2-bbe5afe4e623" ], "request-id": [ - "d66ab891-195d-47ed-9c74-0fe47a725f34" + "4181c641-35ef-4aeb-9fd2-bbe5afe4e623" ], "elapsed-time": [ - "69" + "60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4625,29 +13825,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14810" ], "x-ms-correlation-request-id": [ - "aea94a47-1ac0-42b3-9032-b4fecacbabb0" + "cadb6bc8-fb2c-4c44-b95f-26567431559f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063032Z:aea94a47-1ac0-42b3-9032-b4fecacbabb0" + "CENTRALUS:20171214T230352Z:cadb6bc8-fb2c-4c44-b95f-26567431559f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8ee9698a-8a61-46fc-9e33-c2df1806a7af" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4659,7 +13865,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:31:02 GMT" + "Thu, 14 Dec 2017 23:04:02 GMT" ], "Pragma": [ "no-cache" @@ -4668,20 +13874,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "b525fe86-bd7d-435b-8371-7783c0c2b4b7" + "8ee9698a-8a61-46fc-9e33-c2df1806a7af" ], "request-id": [ - "b525fe86-bd7d-435b-8371-7783c0c2b4b7" + "8ee9698a-8a61-46fc-9e33-c2df1806a7af" ], "elapsed-time": [ - "90" + "312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4690,29 +13896,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14809" ], "x-ms-correlation-request-id": [ - "1d56587e-5c95-4004-84d8-63fd893549f5" + "1eff4400-ff6a-4ff4-8ca2-54199a44acc1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063102Z:1d56587e-5c95-4004-84d8-63fd893549f5" + "CENTRALUS:20171214T230403Z:1eff4400-ff6a-4ff4-8ca2-54199a44acc1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e6b07f6c-b717-420d-926e-2b48939bad48" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4724,7 +13936,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:31:33 GMT" + "Thu, 14 Dec 2017 23:04:13 GMT" ], "Pragma": [ "no-cache" @@ -4733,20 +13945,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "52658a48-dfe0-45d3-aa1d-40f697a88222" + "e6b07f6c-b717-420d-926e-2b48939bad48" ], "request-id": [ - "52658a48-dfe0-45d3-aa1d-40f697a88222" + "e6b07f6c-b717-420d-926e-2b48939bad48" ], "elapsed-time": [ - "106" + "72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4755,29 +13967,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14808" ], "x-ms-correlation-request-id": [ - "f1724cf9-ec26-485c-9fae-f87855047d8c" + "1814c72a-17ed-445a-8b36-20ff7f28c127" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063133Z:f1724cf9-ec26-485c-9fae-f87855047d8c" + "CENTRALUS:20171214T230413Z:1814c72a-17ed-445a-8b36-20ff7f28c127" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d1d10036-8d4c-4fc2-9d81-1496b7f0fab7" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4789,7 +14007,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:32:03 GMT" + "Thu, 14 Dec 2017 23:04:22 GMT" ], "Pragma": [ "no-cache" @@ -4798,20 +14016,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "3dd629f1-8a05-450c-95ec-1c433539a8fe" + "d1d10036-8d4c-4fc2-9d81-1496b7f0fab7" ], "request-id": [ - "3dd629f1-8a05-450c-95ec-1c433539a8fe" + "d1d10036-8d4c-4fc2-9d81-1496b7f0fab7" ], "elapsed-time": [ - "96" + "66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4820,29 +14038,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14807" ], "x-ms-correlation-request-id": [ - "8a3449cd-b1a9-41cb-95e2-1e9a443ebd81" + "e9f5053f-67c4-496c-ad11-3751826a93b0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063203Z:8a3449cd-b1a9-41cb-95e2-1e9a443ebd81" + "CENTRALUS:20171214T230423Z:e9f5053f-67c4-496c-ad11-3751826a93b0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "dd182914-7abd-4c1c-b260-7aa3f6c6e3a7" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4854,7 +14078,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:32:33 GMT" + "Thu, 14 Dec 2017 23:04:34 GMT" ], "Pragma": [ "no-cache" @@ -4863,20 +14087,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "d87a3a68-f59a-4fdb-b780-33abce32f02e" + "dd182914-7abd-4c1c-b260-7aa3f6c6e3a7" ], "request-id": [ - "d87a3a68-f59a-4fdb-b780-33abce32f02e" + "dd182914-7abd-4c1c-b260-7aa3f6c6e3a7" ], "elapsed-time": [ - "98" + "149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4885,29 +14109,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" + "14806" ], "x-ms-correlation-request-id": [ - "8235f574-f78c-4ed6-8e02-e3f3de17fe29" + "483789b0-1215-4d6f-9c8a-db77ae9d3f90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063233Z:8235f574-f78c-4ed6-8e02-e3f3de17fe29" + "CENTRALUS:20171214T230434Z:483789b0-1215-4d6f-9c8a-db77ae9d3f90" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "893fcdc7-6e0c-4785-a13d-aab11e992c15" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4919,7 +14149,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:33:04 GMT" + "Thu, 14 Dec 2017 23:04:44 GMT" ], "Pragma": [ "no-cache" @@ -4928,20 +14158,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6851be42-646b-406e-87e1-5734ed304f92" + "893fcdc7-6e0c-4785-a13d-aab11e992c15" ], "request-id": [ - "6851be42-646b-406e-87e1-5734ed304f92" + "893fcdc7-6e0c-4785-a13d-aab11e992c15" ], "elapsed-time": [ - "125" + "176" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4950,29 +14180,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14805" ], "x-ms-correlation-request-id": [ - "cf6b61c3-58c4-4961-8745-255fcfe90c71" + "0a656a9c-b1f2-4f33-b850-15e76710f808" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063304Z:cf6b61c3-58c4-4961-8745-255fcfe90c71" + "CENTRALUS:20171214T230444Z:0a656a9c-b1f2-4f33-b850-15e76710f808" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ad28bc-7630-4578-a683-b66ab51fad38" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4984,7 +14220,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:33:33 GMT" + "Thu, 14 Dec 2017 23:04:54 GMT" ], "Pragma": [ "no-cache" @@ -4993,20 +14229,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "93627eb0-1e68-4880-ae28-810504b01e3f" + "b6ad28bc-7630-4578-a683-b66ab51fad38" ], "request-id": [ - "93627eb0-1e68-4880-ae28-810504b01e3f" + "b6ad28bc-7630-4578-a683-b66ab51fad38" ], "elapsed-time": [ - "78" + "87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5015,29 +14251,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14804" ], "x-ms-correlation-request-id": [ - "e5d58522-707f-42ff-a87c-575456708949" + "037e6f6e-1390-42df-a137-8e1aae053d02" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063334Z:e5d58522-707f-42ff-a87c-575456708949" + "CENTRALUS:20171214T230454Z:037e6f6e-1390-42df-a137-8e1aae053d02" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e2f579f1-e0df-44bd-907f-22e0223765ec" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5049,7 +14291,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:34:04 GMT" + "Thu, 14 Dec 2017 23:05:04 GMT" ], "Pragma": [ "no-cache" @@ -5058,20 +14300,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "2229bfb7-8caf-40ee-82d4-9bd83147590b" + "e2f579f1-e0df-44bd-907f-22e0223765ec" ], "request-id": [ - "2229bfb7-8caf-40ee-82d4-9bd83147590b" + "e2f579f1-e0df-44bd-907f-22e0223765ec" ], "elapsed-time": [ - "130" + "143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5080,29 +14322,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14803" ], "x-ms-correlation-request-id": [ - "c64689d0-061d-43e5-82e5-7cade02a96f5" + "9d6ba08a-2cfd-4f4b-ab88-742daf5dce2a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063404Z:c64689d0-061d-43e5-82e5-7cade02a96f5" + "CENTRALUS:20171214T230504Z:9d6ba08a-2cfd-4f4b-ab88-742daf5dce2a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "49e363be-390b-4f31-bf45-ad87adcd3e20" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5114,7 +14362,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:34:34 GMT" + "Thu, 14 Dec 2017 23:05:14 GMT" ], "Pragma": [ "no-cache" @@ -5123,20 +14371,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "f80ff7c3-0a0a-41d1-864c-89d7a478973a" + "49e363be-390b-4f31-bf45-ad87adcd3e20" ], "request-id": [ - "f80ff7c3-0a0a-41d1-864c-89d7a478973a" + "49e363be-390b-4f31-bf45-ad87adcd3e20" ], "elapsed-time": [ - "139" + "68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5145,29 +14393,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14802" ], "x-ms-correlation-request-id": [ - "1d0d0e82-dfc6-42e0-b8f7-bbcb81a388de" + "883347f3-52ca-4756-a5b7-db18f67e2ecb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063434Z:1d0d0e82-dfc6-42e0-b8f7-bbcb81a388de" + "CENTRALUS:20171214T230514Z:883347f3-52ca-4756-a5b7-db18f67e2ecb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6d23dc9e-be3a-4346-9055-6ae3cee0486c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5179,7 +14433,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:35:04 GMT" + "Thu, 14 Dec 2017 23:05:24 GMT" ], "Pragma": [ "no-cache" @@ -5188,20 +14442,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "de5e61bb-99d4-45bd-8528-5865cf724fc9" + "6d23dc9e-be3a-4346-9055-6ae3cee0486c" ], "request-id": [ - "de5e61bb-99d4-45bd-8528-5865cf724fc9" + "6d23dc9e-be3a-4346-9055-6ae3cee0486c" ], "elapsed-time": [ - "91" + "65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5210,29 +14464,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14801" ], "x-ms-correlation-request-id": [ - "83fdadda-9e55-4a05-8129-a4d62fc8d53b" + "52b98377-756a-4047-8e03-5498bd00693b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063505Z:83fdadda-9e55-4a05-8129-a4d62fc8d53b" + "CENTRALUS:20171214T230525Z:52b98377-756a-4047-8e03-5498bd00693b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "de784bb1-514f-403d-b1d9-41eb014d4e89" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5244,7 +14504,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:35:35 GMT" + "Thu, 14 Dec 2017 23:05:35 GMT" ], "Pragma": [ "no-cache" @@ -5253,20 +14513,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "6e9643ef-1b9e-45ad-b90e-e793c249295a" + "de784bb1-514f-403d-b1d9-41eb014d4e89" ], "request-id": [ - "6e9643ef-1b9e-45ad-b90e-e793c249295a" + "de784bb1-514f-403d-b1d9-41eb014d4e89" ], "elapsed-time": [ - "307" + "564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5275,29 +14535,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14800" ], "x-ms-correlation-request-id": [ - "869c7f61-5724-4eab-8334-b3024b39d507" + "107360c9-641f-440b-8c06-492f984bb3fd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063535Z:869c7f61-5724-4eab-8334-b3024b39d507" + "CENTRALUS:20171214T230535Z:107360c9-641f-440b-8c06-492f984bb3fd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "77b9f826-83b7-47bd-81cf-2a1deda01aef" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5309,7 +14575,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:36:05 GMT" + "Thu, 14 Dec 2017 23:05:46 GMT" ], "Pragma": [ "no-cache" @@ -5318,20 +14584,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "172b35f9-ff71-4445-a208-8bbf149aed9d" + "77b9f826-83b7-47bd-81cf-2a1deda01aef" ], "request-id": [ - "172b35f9-ff71-4445-a208-8bbf149aed9d" + "77b9f826-83b7-47bd-81cf-2a1deda01aef" ], "elapsed-time": [ - "212" + "75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5340,29 +14606,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14799" ], "x-ms-correlation-request-id": [ - "c22077cf-53d9-4691-84d4-9dd6765f3694" + "6af9fd9c-4710-4fd5-97b4-b3ab87c2711e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063605Z:c22077cf-53d9-4691-84d4-9dd6765f3694" + "CENTRALUS:20171214T230546Z:6af9fd9c-4710-4fd5-97b4-b3ab87c2711e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "04178a5c-2676-4fa8-b71d-8caf784d670d" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5374,7 +14646,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:36:36 GMT" + "Thu, 14 Dec 2017 23:05:56 GMT" ], "Pragma": [ "no-cache" @@ -5383,20 +14655,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "a95b3870-4efd-45ee-9c95-fd41948a37b8" + "04178a5c-2676-4fa8-b71d-8caf784d670d" ], "request-id": [ - "a95b3870-4efd-45ee-9c95-fd41948a37b8" + "04178a5c-2676-4fa8-b71d-8caf784d670d" ], "elapsed-time": [ - "112" + "80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5405,29 +14677,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14798" ], "x-ms-correlation-request-id": [ - "6dcca668-e456-4d12-bec0-0a8707e7707a" + "48ae7f77-99a5-4444-81a0-3083075a1883" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063636Z:6dcca668-e456-4d12-bec0-0a8707e7707a" + "CENTRALUS:20171214T230556Z:48ae7f77-99a5-4444-81a0-3083075a1883" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "352e42be-b0b8-45f5-9a39-4a6286d89b42" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.25211.01", "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801\",\"name\":\"azs-801\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"basic\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394\",\"name\":\"azs-7394\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5439,7 +14717,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:05 GMT" + "Thu, 14 Dec 2017 23:06:07 GMT" ], "Pragma": [ "no-cache" @@ -5448,20 +14726,20 @@ "chunked" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A29%3A01.1387029Z'\"" + "W/\"datetime'2017-12-14T22%3A50%3A14.7709986Z'\"" ], "Vary": [ "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "c5f72a1c-5aca-4099-bd9e-969f755fe3d5" + "352e42be-b0b8-45f5-9a39-4a6286d89b42" ], "request-id": [ - "c5f72a1c-5aca-4099-bd9e-969f755fe3d5" + "352e42be-b0b8-45f5-9a39-4a6286d89b42" ], "elapsed-time": [ - "113" + "991" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5470,25 +14748,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14797" ], "x-ms-correlation-request-id": [ - "ce684b3e-afe2-424e-a3c7-b5dffa4b2ba9" + "d5f81ba2-aa0b-4227-8605-5ccf15a8a935" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063706Z:ce684b3e-afe2-424e-a3c7-b5dffa4b2ba9" + "CENTRALUS:20171214T230607Z:d5f81ba2-aa0b-4227-8605-5ccf15a8a935" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2306/providers/Microsoft.Search/searchServices/azs-801?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MDE/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2309/providers/Microsoft.Search/searchServices/azs-7394?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzA5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03Mzk0P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0de50751-209b-4b9e-8c1c-d1a56fd1343f" + "56b5843c-9f57-4c72-89b6-60c59b901d2c" ], "accept-language": [ "en-US" @@ -5510,19 +14788,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:12 GMT" + "Thu, 14 Dec 2017 23:06:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0de50751-209b-4b9e-8c1c-d1a56fd1343f" + "56b5843c-9f57-4c72-89b6-60c59b901d2c" ], "request-id": [ - "0de50751-209b-4b9e-8c1c-d1a56fd1343f" + "56b5843c-9f57-4c72-89b6-60c59b901d2c" ], "elapsed-time": [ - "2508" + "2620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5531,13 +14809,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1126" + "1194" ], "x-ms-correlation-request-id": [ - "722f6af9-bbb2-4c49-aad7-8b5574ef7dcf" + "0519a33e-3760-4019-80f6-af4140e11ff7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063712Z:722f6af9-bbb2-4c49-aad7-8b5574ef7dcf" + "CENTRALUS:20171214T230610Z:0519a33e-3760-4019-80f6-af4140e11ff7" ] }, "StatusCode": 200 @@ -5545,10 +14823,10 @@ ], "Names": { "GenerateName": [ - "azsmnet2306" + "azsmnet2309" ], "GenerateServiceName": [ - "azs-801" + "azs-7394" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json new file mode 100644 index 0000000000000..f403d144802ab --- /dev/null +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CanUpdateTags.json @@ -0,0 +1,438 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a06ea75-0335-4bf3-bd18-0b1954fa18d0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\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": [ + "Thu, 14 Dec 2017 09:51:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-request-id": [ + "cee19e09-0165-47bf-80d4-a8cfbe8a038f" + ], + "x-ms-correlation-request-id": [ + "cee19e09-0165-47bf-80d4-a8cfbe8a038f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095143Z:cee19e09-0165-47bf-80d4-a8cfbe8a038f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5066?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MDY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "d3cd35ea-f46e-4bb6-83ce-34920344e4f9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066\",\r\n \"name\": \"azsmnet5066\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:51:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "42afc8ec-103e-4f21-8e70-91892462af7a" + ], + "x-ms-correlation-request-id": [ + "42afc8ec-103e-4f21-8e70-91892462af7a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095144Z:42afc8ec-103e-4f21-8e70-91892462af7a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDE3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "141" + ], + "x-ms-client-request-id": [ + "585d793d-a272-4183-b07c-4fb2e0c17db7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017\",\"name\":\"azs-2017\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:51:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A51%3A45.7147238Z'\"" + ], + "x-ms-request-id": [ + "585d793d-a272-4183-b07c-4fb2e0c17db7" + ], + "request-id": [ + "585d793d-a272-4183-b07c-4fb2e0c17db7" + ], + "elapsed-time": [ + "883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "3ae11070-efd1-4bd2-bc54-f1e65fbf201f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095145Z:3ae11070-efd1-4bd2-bc54-f1e65fbf201f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDE3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"testTag\": \"testValue\",\r\n \"anotherTag\": \"anotherValue\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "85" + ], + "x-ms-client-request-id": [ + "da0a7a5d-87ee-4be7-b200-c8fcbc4da60f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017\",\"name\":\"azs-2017\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"tags\":{\"testTag\":\"testValue\",\"anotherTag\":\"anotherValue\"},\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:51:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A51%3A46.3243088Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "da0a7a5d-87ee-4be7-b200-c8fcbc4da60f" + ], + "request-id": [ + "da0a7a5d-87ee-4be7-b200-c8fcbc4da60f" + ], + "elapsed-time": [ + "372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "8da7d911-cdf4-4db7-9e80-8ce8ba0ef602" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095146Z:8da7d911-cdf4-4db7-9e80-8ce8ba0ef602" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDE3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"testTag\": \"testValue\",\r\n \"anotherTag\": \"differentValue\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "87" + ], + "x-ms-client-request-id": [ + "bab682bb-0d13-49cb-a565-5d949226686d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017\",\"name\":\"azs-2017\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"tags\":{\"testTag\":\"testValue\",\"anotherTag\":\"differentValue\"},\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:51:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A51%3A46.935897Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bab682bb-0d13-49cb-a565-5d949226686d" + ], + "request-id": [ + "bab682bb-0d13-49cb-a565-5d949226686d" + ], + "elapsed-time": [ + "360" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" + ], + "x-ms-correlation-request-id": [ + "5ec8d88c-88bb-411e-a11e-ee3a9cc84f23" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095147Z:5ec8d88c-88bb-411e-a11e-ee3a9cc84f23" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1MDY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0yMDE3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"testTag\": \"testValue\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "50" + ], + "x-ms-client-request-id": [ + "bdd8a4ea-1cee-4888-96b9-d7d1e41aa17c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5066/providers/Microsoft.Search/searchServices/azs-2017\",\"name\":\"azs-2017\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"tags\":{\"testTag\":\"testValue\"},\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 09:51:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T09%3A51%3A47.5795146Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bdd8a4ea-1cee-4888-96b9-d7d1e41aa17c" + ], + "request-id": [ + "bdd8a4ea-1cee-4888-96b9-d7d1e41aa17c" + ], + "elapsed-time": [ + "327" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1174" + ], + "x-ms-correlation-request-id": [ + "a0fbe757-5fad-48f2-b3cd-784580db6318" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T095147Z:a0fbe757-5fad-48f2-b3cd-784580db6318" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet5066" + ], + "GenerateServiceName": [ + "azs-2017" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json index eb9a1668147e7..9b614302982a9 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnInvalidName.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38d224a1-ea22-4162-8b89-10ea7136f35c" + "89a9ce72-f803-459c-8b3f-4ab169fac3b9" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:12 GMT" + "Thu, 14 Dec 2017 09:51:40 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1176" + "1183" ], "x-ms-request-id": [ - "594d54f3-7379-48c0-8997-ad5cf4e095d0" + "3fc20e50-0fd2-46db-8115-4e83e140e30e" ], "x-ms-correlation-request-id": [ - "594d54f3-7379-48c0-8997-ad5cf4e095d0" + "3fc20e50-0fd2-46db-8115-4e83e140e30e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055613Z:594d54f3-7379-48c0-8997-ad5cf4e095d0" + "CENTRALUS:20171214T095141Z:3fc20e50-0fd2-46db-8115-4e83e140e30e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8834?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4ODM0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet436?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0MzY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "5fb229ad-c682-4482-8c8c-6c848df501ab" + "1268c3ba-c2e6-4006-9823-709952c1d0bb" ], "accept-language": [ "en-US" @@ -81,10 +81,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8834\",\r\n \"name\": \"azsmnet8834\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet436\",\r\n \"name\": \"azsmnet436\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:12 GMT" + "Thu, 14 Dec 2017 09:51:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1182" ], "x-ms-request-id": [ - "04638c86-3470-448c-8109-497f14742ec6" + "a17c4a44-ab61-4472-a91e-023c81d99033" ], "x-ms-correlation-request-id": [ - "04638c86-3470-448c-8109-497f14742ec6" + "a17c4a44-ab61-4472-a91e-023c81d99033" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055613Z:04638c86-3470-448c-8109-497f14742ec6" + "CENTRALUS:20171214T095141Z:a17c4a44-ab61-4472-a91e-023c81d99033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,7 +132,7 @@ "58" ], "x-ms-client-request-id": [ - "85a8bb6a-2c9c-450f-8136-4e64a3c91715" + "ed38502f-790c-424e-b09c-cd27a4955786" ], "accept-language": [ "en-US" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:13 GMT" + "Thu, 14 Dec 2017 09:51:41 GMT" ], "Pragma": [ "no-cache" @@ -167,13 +167,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "85a8bb6a-2c9c-450f-8136-4e64a3c91715" + "ed38502f-790c-424e-b09c-cd27a4955786" ], "request-id": [ - "85a8bb6a-2c9c-450f-8136-4e64a3c91715" + "ed38502f-790c-424e-b09c-cd27a4955786" ], "elapsed-time": [ - "21" + "14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,13 +182,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1174" + "1181" ], "x-ms-correlation-request-id": [ - "e3f6f108-1310-4a32-b1a8-42edccce8a23" + "d6ff26f3-b444-4303-a03d-584922311340" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055614Z:e3f6f108-1310-4a32-b1a8-42edccce8a23" + "CENTRALUS:20171214T095142Z:d6ff26f3-b444-4303-a03d-584922311340" ] }, "StatusCode": 200 @@ -196,7 +196,7 @@ ], "Names": { "GenerateName": [ - "azsmnet8834" + "azsmnet436" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json index e8bc62925d589..2a4fa6d4ba7ad 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilityFailsOnUsedName.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d19de050-f7e0-4f17-8d61-5616e87e5f23" + "5f93f496-6bb5-4e9a-a330-fb631749ea6e" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:13 GMT" + "Thu, 14 Dec 2017 10:42:17 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1124" + "1153" ], "x-ms-request-id": [ - "6c523817-5c76-4205-ab78-3655126fb1ed" + "4ef009cc-9bbc-4b09-90c4-12b81d99e4d3" ], "x-ms-correlation-request-id": [ - "6c523817-5c76-4205-ab78-3655126fb1ed" + "4ef009cc-9bbc-4b09-90c4-12b81d99e4d3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063713Z:6c523817-5c76-4205-ab78-3655126fb1ed" + "CENTRALUS:20171214T104217Z:4ef009cc-9bbc-4b09-90c4-12b81d99e4d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1544?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTQ0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet2021?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMDIxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "aa25d844-c9df-4733-a83f-487917d2d8c5" + "a1bcb58e-b391-401f-9f84-ab8a1fd2f166" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1544\",\r\n \"name\": \"azsmnet1544\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2021\",\r\n \"name\": \"azsmnet2021\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:13 GMT" + "Thu, 14 Dec 2017 10:42:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1123" + "1152" ], "x-ms-request-id": [ - "c66295ab-6710-4baa-b7b1-b2c24d9fd18f" + "002dbc87-d3d5-4013-be86-32ce65851942" ], "x-ms-correlation-request-id": [ - "c66295ab-6710-4baa-b7b1-b2c24d9fd18f" + "002dbc87-d3d5-4013-be86-32ce65851942" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063713Z:c66295ab-6710-4baa-b7b1-b2c24d9fd18f" + "CENTRALUS:20171214T104218Z:002dbc87-d3d5-4013-be86-32ce65851942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1544/providers/Microsoft.Search/searchServices/azs-125?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTQ0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMjU/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2021/providers/Microsoft.Search/searchServices/azs-6968?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02OTY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "141" ], "x-ms-client-request-id": [ - "dd061a52-00bc-4c6e-980d-03a992659e4a" + "801d7983-42a9-4d6d-b783-4213893a51e8" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1544/providers/Microsoft.Search/searchServices/azs-125\",\"name\":\"azs-125\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet2021/providers/Microsoft.Search/searchServices/azs-6968\",\"name\":\"azs-6968\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ - "383" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:16 GMT" + "Thu, 14 Dec 2017 10:42:21 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T06%3A37%3A15.9458967Z'\"" + "W/\"datetime'2017-12-14T10%3A42%3A21.2028792Z'\"" ], "x-ms-request-id": [ - "dd061a52-00bc-4c6e-980d-03a992659e4a" + "801d7983-42a9-4d6d-b783-4213893a51e8" ], "request-id": [ - "dd061a52-00bc-4c6e-980d-03a992659e4a" + "801d7983-42a9-4d6d-b783-4213893a51e8" ], "elapsed-time": [ - "1235" + "2303" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,13 +181,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1122" + "1151" ], "x-ms-correlation-request-id": [ - "69571150-83f0-45e9-a81e-db8552b42fb2" + "12d1bc4d-74c0-4257-b75c-45da616fc1cc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063716Z:69571150-83f0-45e9-a81e-db8552b42fb2" + "CENTRALUS:20171214T104221Z:12d1bc4d-74c0-4257-b75c-45da616fc1cc" ] }, "StatusCode": 201 @@ -196,16 +196,16 @@ "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/checkNameAvailability?api-version=2015-08-19", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL2NoZWNrTmFtZUF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azs-125\",\r\n \"type\": \"searchServices\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azs-6968\",\r\n \"type\": \"searchServices\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "54" + "55" ], "x-ms-client-request-id": [ - "34bf62b5-d3db-4b25-bb4e-1a3ed6a5bbe3" + "3207e161-0a11-4d73-903e-69a2eb15358e" ], "accept-language": [ "en-US" @@ -227,7 +227,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:16 GMT" + "Thu, 14 Dec 2017 10:42:21 GMT" ], "Pragma": [ "no-cache" @@ -240,13 +240,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34bf62b5-d3db-4b25-bb4e-1a3ed6a5bbe3" + "3207e161-0a11-4d73-903e-69a2eb15358e" ], "request-id": [ - "34bf62b5-d3db-4b25-bb4e-1a3ed6a5bbe3" + "3207e161-0a11-4d73-903e-69a2eb15358e" ], "elapsed-time": [ - "136" + "73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,13 +255,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1121" + "1150" ], "x-ms-correlation-request-id": [ - "038c8007-61ca-48c6-92cf-580443d0966f" + "98ecb2a1-66ec-477a-9507-9926b1b74955" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063716Z:038c8007-61ca-48c6-92cf-580443d0966f" + "CENTRALUS:20171214T104221Z:98ecb2a1-66ec-477a-9507-9926b1b74955" ] }, "StatusCode": 200 @@ -269,10 +269,10 @@ ], "Names": { "GenerateName": [ - "azsmnet1544" + "azsmnet2021" ], "GenerateServiceName": [ - "azs-125" + "azs-6968" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json index 1773926c78094..35752db1bda09 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CheckNameAvailabilitySucceedsOnNewName.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2333b48b-aa04-42a4-b276-af5258d0f704" + "0e25aae6-a528-4797-aa3d-44845328ffa2" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:31 GMT" + "Thu, 14 Dec 2017 10:24:19 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1153" + "1181" ], "x-ms-request-id": [ - "0663fa1d-fd08-4f1d-8e6f-342716cafdb9" + "2907bea7-e482-4ce7-8fb4-0ff9585b684e" ], "x-ms-correlation-request-id": [ - "0663fa1d-fd08-4f1d-8e6f-342716cafdb9" + "2907bea7-e482-4ce7-8fb4-0ff9585b684e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055632Z:0663fa1d-fd08-4f1d-8e6f-342716cafdb9" + "CENTRALUS:20171214T102419Z:2907bea7-e482-4ce7-8fb4-0ff9585b684e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet7253?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3MjUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet5024?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1MDI0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "967c6d7c-2510-4317-937a-cb4169b7fef4" + "cdf7807d-fc6b-48b5-8be8-4db22d3a65fd" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet7253\",\r\n \"name\": \"azsmnet7253\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet5024\",\r\n \"name\": \"azsmnet5024\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:31 GMT" + "Thu, 14 Dec 2017 10:24:19 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1152" + "1180" ], "x-ms-request-id": [ - "5cd34a44-9617-4ee8-a5a3-d7eb86130af9" + "eeb6b211-9d07-49f8-8f7c-542837b0dbad" ], "x-ms-correlation-request-id": [ - "5cd34a44-9617-4ee8-a5a3-d7eb86130af9" + "eeb6b211-9d07-49f8-8f7c-542837b0dbad" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055632Z:5cd34a44-9617-4ee8-a5a3-d7eb86130af9" + "CENTRALUS:20171214T102420Z:eeb6b211-9d07-49f8-8f7c-542837b0dbad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -132,7 +132,7 @@ "57" ], "x-ms-client-request-id": [ - "104bec4c-d581-4446-aa38-f19e5c4e1eda" + "a2ff056b-81fb-4c67-9c0f-2cd0f961b953" ], "accept-language": [ "en-US" @@ -154,7 +154,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:33 GMT" + "Thu, 14 Dec 2017 10:24:20 GMT" ], "Pragma": [ "no-cache" @@ -167,13 +167,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "104bec4c-d581-4446-aa38-f19e5c4e1eda" + "a2ff056b-81fb-4c67-9c0f-2cd0f961b953" ], "request-id": [ - "104bec4c-d581-4446-aa38-f19e5c4e1eda" + "a2ff056b-81fb-4c67-9c0f-2cd0f961b953" ], "elapsed-time": [ - "151" + "77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,13 +182,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1151" + "1179" ], "x-ms-correlation-request-id": [ - "7319fb68-e29b-4357-9513-42428cb0f0e0" + "6a045796-dd13-4b7c-b402-74751f0744cd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055633Z:7319fb68-e29b-4357-9513-42428cb0f0e0" + "CENTRALUS:20171214T102421Z:6a045796-dd13-4b7c-b402-74751f0744cd" ] }, "StatusCode": 200 @@ -196,7 +196,7 @@ ], "Names": { "GenerateName": [ - "azsmnet7253" + "azsmnet5024" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json index 612a73cf08423..4b736edf8de32 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateServiceWithInvalidNameGivesUsefulMessage.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4410f0fa-9fa7-40ef-8d87-dcd5fb930665" + "8d3fcc2b-6150-45a5-a50e-f7339e718b3e" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:47 GMT" + "Thu, 14 Dec 2017 10:24:49 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1139" + "1167" ], "x-ms-request-id": [ - "e16f5e49-58dc-4760-b2ce-6fcdee54bcb0" + "8c3d5d33-855d-4879-89aa-bf67fe3d16a9" ], "x-ms-correlation-request-id": [ - "e16f5e49-58dc-4760-b2ce-6fcdee54bcb0" + "8c3d5d33-855d-4879-89aa-bf67fe3d16a9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055647Z:e16f5e49-58dc-4760-b2ce-6fcdee54bcb0" + "CENTRALUS:20171214T102449Z:8c3d5d33-855d-4879-89aa-bf67fe3d16a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9757?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzU3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet9286?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5Mjg2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "86f7db85-2f8d-4997-8fc0-699999a89e13" + "b2914de8-4ff7-41c4-9167-a068bc3881e2" ], "accept-language": [ "en-US" @@ -81,8 +81,11 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9757\",\r\n \"name\": \"azsmnet9757\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9286\",\r\n \"name\": \"azsmnet9286\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { + "Content-Length": [ + "175" + ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -93,38 +96,32 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:47 GMT" + "Thu, 14 Dec 2017 10:24:49 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1138" + "1166" ], "x-ms-request-id": [ - "dba17bd3-3713-4986-bb38-1bd295ab49e3" + "54977c01-8523-4e3e-88b1-a25ac01cb57f" ], "x-ms-correlation-request-id": [ - "dba17bd3-3713-4986-bb38-1bd295ab49e3" + "54977c01-8523-4e3e-88b1-a25ac01cb57f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055647Z:dba17bd3-3713-4986-bb38-1bd295ab49e3" + "CENTRALUS:20171214T102449Z:54977c01-8523-4e3e-88b1-a25ac01cb57f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ] }, - "StatusCode": 200 + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9757/providers/Microsoft.Search/searchServices/----badname?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzLy0tLS1iYWRuYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet9286/providers/Microsoft.Search/searchServices/----badname?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5Mjg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzLy0tLS1iYWRuYW1lP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -135,7 +132,7 @@ "141" ], "x-ms-client-request-id": [ - "6bd0a50a-eeda-42a4-bd59-32aef20550cc" + "56dd5140-15bc-4cda-914f-aa8a57cb5c3b" ], "accept-language": [ "en-US" @@ -163,19 +160,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:48 GMT" + "Thu, 14 Dec 2017 10:24:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6bd0a50a-eeda-42a4-bd59-32aef20550cc" + "56dd5140-15bc-4cda-914f-aa8a57cb5c3b" ], "request-id": [ - "6bd0a50a-eeda-42a4-bd59-32aef20550cc" + "56dd5140-15bc-4cda-914f-aa8a57cb5c3b" ], "elapsed-time": [ - "28" + "6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -184,13 +181,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1137" + "1165" ], "x-ms-correlation-request-id": [ - "19a05a49-1875-4575-8187-712c8206e411" + "6f07cb3b-ddd2-4fa7-80f4-f00b09c9ee6c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055648Z:19a05a49-1875-4575-8187-712c8206e411" + "CENTRALUS:20171214T102450Z:6f07cb3b-ddd2-4fa7-80f4-f00b09c9ee6c" ] }, "StatusCode": 400 @@ -198,7 +195,7 @@ ], "Names": { "GenerateName": [ - "azsmnet9757" + "azsmnet9286" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json new file mode 100644 index 0000000000000..1b09586231175 --- /dev/null +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/CreateStandardServicePollsAutomatically.json @@ -0,0 +1,2803 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f739747-c91f-4058-80e1-dfa6578c8504" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\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": [ + "Thu, 14 Dec 2017 10:42:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1148" + ], + "x-ms-request-id": [ + "93265e7d-0b8e-49e8-8ab5-efaf18c7a83b" + ], + "x-ms-correlation-request-id": [ + "93265e7d-0b8e-49e8-8ab5-efaf18c7a83b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104223Z:93265e7d-0b8e-49e8-8ab5-efaf18c7a83b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet1595?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxNTk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "10a9dac2-a03d-4416-91d3-a43d110477a0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595\",\r\n \"name\": \"azsmnet1595\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:42:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1147" + ], + "x-ms-request-id": [ + "0438d2f0-e28c-4f2b-9110-e8ae92f0875d" + ], + "x-ms-correlation-request-id": [ + "0438d2f0-e28c-4f2b-9110-e8ae92f0875d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104223Z:0438d2f0-e28c-4f2b-9110-e8ae92f0875d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 2,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"standard\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "145" + ], + "x-ms-client-request-id": [ + "a97e349a-7d1a-4928-9298-c2f012b11cdc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:42:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "x-ms-request-id": [ + "a97e349a-7d1a-4928-9298-c2f012b11cdc" + ], + "request-id": [ + "a97e349a-7d1a-4928-9298-c2f012b11cdc" + ], + "elapsed-time": [ + "26794" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1146" + ], + "x-ms-correlation-request-id": [ + "3508c4a2-1730-4632-bd76-666bd100a4da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104251Z:3508c4a2-1730-4632-bd76-666bd100a4da" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:43:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9cc0fca2-2250-4ccc-aa65-706c659ab503" + ], + "request-id": [ + "9cc0fca2-2250-4ccc-aa65-706c659ab503" + ], + "elapsed-time": [ + "548" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "a86007ad-d9c8-4e5b-90f8-4bae413ceb1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104321Z:a86007ad-d9c8-4e5b-90f8-4bae413ceb1c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:43:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e1ffee62-2962-4918-93b6-d2c798c9567c" + ], + "request-id": [ + "e1ffee62-2962-4918-93b6-d2c798c9567c" + ], + "elapsed-time": [ + "756" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], + "x-ms-correlation-request-id": [ + "ff7dc35f-7847-4851-a460-d6f3ed9b7b45" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104352Z:ff7dc35f-7847-4851-a460-d6f3ed9b7b45" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:44:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eeae6e51-2528-4bbb-9d14-15fa611563d4" + ], + "request-id": [ + "eeae6e51-2528-4bbb-9d14-15fa611563d4" + ], + "elapsed-time": [ + "80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14783" + ], + "x-ms-correlation-request-id": [ + "c129c7f8-1f90-4125-a9fc-8580882fc229" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104423Z:c129c7f8-1f90-4125-a9fc-8580882fc229" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:44:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "90b60bc4-8516-4e11-8ddb-6b6362ce027b" + ], + "request-id": [ + "90b60bc4-8516-4e11-8ddb-6b6362ce027b" + ], + "elapsed-time": [ + "316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "d62e272b-e8d5-4179-8e7f-7b377abbaf6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104453Z:d62e272b-e8d5-4179-8e7f-7b377abbaf6b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:45:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "186df66c-dc4f-4522-9cfd-a4a1390db68a" + ], + "request-id": [ + "186df66c-dc4f-4522-9cfd-a4a1390db68a" + ], + "elapsed-time": [ + "316" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "9e6884a3-14a4-4fa6-a8ca-2deb18d9f5c4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104524Z:9e6884a3-14a4-4fa6-a8ca-2deb18d9f5c4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:45:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "81172f2b-5dc7-447c-8731-909ec67959ad" + ], + "request-id": [ + "81172f2b-5dc7-447c-8731-909ec67959ad" + ], + "elapsed-time": [ + "293" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "f0080cf0-d01f-425a-9a51-6bd9b0e28f7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104554Z:f0080cf0-d01f-425a-9a51-6bd9b0e28f7b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:46:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "63b81668-15d4-45b8-91b4-e198567200e1" + ], + "request-id": [ + "63b81668-15d4-45b8-91b4-e198567200e1" + ], + "elapsed-time": [ + "1175" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "cd9d66a0-39b1-40af-a796-003855ea341d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104626Z:cd9d66a0-39b1-40af-a796-003855ea341d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:47:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fd98cf86-51d3-44d9-a23e-016c53fc0b23" + ], + "request-id": [ + "fd98cf86-51d3-44d9-a23e-016c53fc0b23" + ], + "elapsed-time": [ + "8183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14778" + ], + "x-ms-correlation-request-id": [ + "be152a14-ecca-41ba-beed-7ccea5ad9f27" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104704Z:be152a14-ecca-41ba-beed-7ccea5ad9f27" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:47:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1d8d9b83-3a63-4514-9e88-f0fc19eeda7d" + ], + "request-id": [ + "1d8d9b83-3a63-4514-9e88-f0fc19eeda7d" + ], + "elapsed-time": [ + "90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14777" + ], + "x-ms-correlation-request-id": [ + "8bff9fba-8d93-4a24-8d07-58317695a529" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104735Z:8bff9fba-8d93-4a24-8d07-58317695a529" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:48:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9c356361-1c25-4b2c-8bff-c827b19fff19" + ], + "request-id": [ + "9c356361-1c25-4b2c-8bff-c827b19fff19" + ], + "elapsed-time": [ + "240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14776" + ], + "x-ms-correlation-request-id": [ + "a8c73400-54cb-4187-87ce-959d4cd3509b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104805Z:a8c73400-54cb-4187-87ce-959d4cd3509b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:48:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b68d059a-22dc-4b70-a3b8-bf0fe6dcaecc" + ], + "request-id": [ + "b68d059a-22dc-4b70-a3b8-bf0fe6dcaecc" + ], + "elapsed-time": [ + "2341" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14775" + ], + "x-ms-correlation-request-id": [ + "2f7b34a6-6f9a-4a9d-aef3-f769af3bc568" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104837Z:2f7b34a6-6f9a-4a9d-aef3-f769af3bc568" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:49:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5fd8f35c-2768-4aaa-bbca-ea765f753836" + ], + "request-id": [ + "5fd8f35c-2768-4aaa-bbca-ea765f753836" + ], + "elapsed-time": [ + "3908" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14774" + ], + "x-ms-correlation-request-id": [ + "5d70e31e-91be-4999-be8c-314f06261eb1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104911Z:5d70e31e-91be-4999-be8c-314f06261eb1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:49:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4ccefbd5-a829-44d4-9dd7-7dd9ae788647" + ], + "request-id": [ + "4ccefbd5-a829-44d4-9dd7-7dd9ae788647" + ], + "elapsed-time": [ + "101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14773" + ], + "x-ms-correlation-request-id": [ + "eda124a3-69f9-4b41-b10f-e6c3d421d9da" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T104942Z:eda124a3-69f9-4b41-b10f-e6c3d421d9da" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:50:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "91d25dcd-18b4-4423-82b0-8763398821bc" + ], + "request-id": [ + "91d25dcd-18b4-4423-82b0-8763398821bc" + ], + "elapsed-time": [ + "3974" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14772" + ], + "x-ms-correlation-request-id": [ + "eaaec859-2667-499f-a537-5ebbb3a54de0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105016Z:eaaec859-2667-499f-a537-5ebbb3a54de0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:50:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b7898f47-fa67-4953-95c2-95897bf211cd" + ], + "request-id": [ + "b7898f47-fa67-4953-95c2-95897bf211cd" + ], + "elapsed-time": [ + "8660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14771" + ], + "x-ms-correlation-request-id": [ + "b5be8981-2624-4629-99fa-9e00fb09e653" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105055Z:b5be8981-2624-4629-99fa-9e00fb09e653" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:51:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5e5fd7ae-5ef4-4565-9290-bc25f1907046" + ], + "request-id": [ + "5e5fd7ae-5ef4-4565-9290-bc25f1907046" + ], + "elapsed-time": [ + "4019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14770" + ], + "x-ms-correlation-request-id": [ + "daa9aab4-2644-43a7-aff1-f8cc772811f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105129Z:daa9aab4-2644-43a7-aff1-f8cc772811f2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:52:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9eb3e968-4e29-45ac-a513-99b17ad29c16" + ], + "request-id": [ + "9eb3e968-4e29-45ac-a513-99b17ad29c16" + ], + "elapsed-time": [ + "981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14769" + ], + "x-ms-correlation-request-id": [ + "1b0c498a-4ed9-41cc-8cad-8b026220c661" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105200Z:1b0c498a-4ed9-41cc-8cad-8b026220c661" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:52:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1d027ef2-f3ce-4406-9bbd-680d14c7104f" + ], + "request-id": [ + "1d027ef2-f3ce-4406-9bbd-680d14c7104f" + ], + "elapsed-time": [ + "2077" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14768" + ], + "x-ms-correlation-request-id": [ + "a681ff7b-4f92-4ff1-89c1-8ffb5bab1dfd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105232Z:a681ff7b-4f92-4ff1-89c1-8ffb5bab1dfd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:53:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "11320e3e-828c-4285-88f9-ee72b685d66a" + ], + "request-id": [ + "11320e3e-828c-4285-88f9-ee72b685d66a" + ], + "elapsed-time": [ + "304" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "20afc8ff-f882-4c8c-9190-688dfbdef54f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105302Z:20afc8ff-f882-4c8c-9190-688dfbdef54f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:53:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9e62bb34-76ad-4ba7-9839-8d7c00c4d23b" + ], + "request-id": [ + "9e62bb34-76ad-4ba7-9839-8d7c00c4d23b" + ], + "elapsed-time": [ + "110" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-correlation-request-id": [ + "e7527188-2950-48eb-becf-626285a0be22" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105333Z:e7527188-2950-48eb-becf-626285a0be22" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:54:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "535dcb1b-b5bf-41fc-82b6-f2654ac46676" + ], + "request-id": [ + "535dcb1b-b5bf-41fc-82b6-f2654ac46676" + ], + "elapsed-time": [ + "3608" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "66f0f9a9-4685-451e-a34c-a7d7e976849e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105406Z:66f0f9a9-4685-451e-a34c-a7d7e976849e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:54:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e80e4ce9-0b1e-4e63-b26d-4f4c899a9fb5" + ], + "request-id": [ + "e80e4ce9-0b1e-4e63-b26d-4f4c899a9fb5" + ], + "elapsed-time": [ + "180" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-correlation-request-id": [ + "99d22a27-721c-43ee-ba2d-bc53aca0440f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105437Z:99d22a27-721c-43ee-ba2d-bc53aca0440f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:55:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8b1c1c27-a888-459a-af5a-786b9e7e8a84" + ], + "request-id": [ + "8b1c1c27-a888-459a-af5a-786b9e7e8a84" + ], + "elapsed-time": [ + "5315" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "91441240-1883-4e1c-88dd-2d1d53bc8723" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105512Z:91441240-1883-4e1c-88dd-2d1d53bc8723" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:55:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4fbcae14-eb85-4123-b84a-80a8b8cbd108" + ], + "request-id": [ + "4fbcae14-eb85-4123-b84a-80a8b8cbd108" + ], + "elapsed-time": [ + "3265" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-correlation-request-id": [ + "51b9123f-1850-4402-a015-5605ae2e1eb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105545Z:51b9123f-1850-4402-a015-5605ae2e1eb7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:56:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "53442835-9015-4209-bfd1-b92ad1690b1a" + ], + "request-id": [ + "53442835-9015-4209-bfd1-b92ad1690b1a" + ], + "elapsed-time": [ + "297" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "52768fd8-c576-4e54-b3d7-b2de5b93daa5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105616Z:52768fd8-c576-4e54-b3d7-b2de5b93daa5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:56:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6f3c7275-6cea-4a5a-876a-6084ce578b99" + ], + "request-id": [ + "6f3c7275-6cea-4a5a-876a-6084ce578b99" + ], + "elapsed-time": [ + "6224" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-correlation-request-id": [ + "baf9422d-beb8-4261-ac88-5666696b2a1b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105652Z:baf9422d-beb8-4261-ac88-5666696b2a1b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:57:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c08f417e-c653-451f-b656-fb759428e54c" + ], + "request-id": [ + "c08f417e-c653-451f-b656-fb759428e54c" + ], + "elapsed-time": [ + "7842" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" + ], + "x-ms-correlation-request-id": [ + "0600e00a-f206-455d-8f23-6140c5133c06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105730Z:0600e00a-f206-455d-8f23-6140c5133c06" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:58:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b37e8501-e722-4f0d-8424-af375b63c4e9" + ], + "request-id": [ + "b37e8501-e722-4f0d-8424-af375b63c4e9" + ], + "elapsed-time": [ + "8899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14758" + ], + "x-ms-correlation-request-id": [ + "34573036-5d29-4e21-b51a-584a35f4d39f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105809Z:34573036-5d29-4e21-b51a-584a35f4d39f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:58:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dc26284d-8787-41ec-ae6b-6c8ec7bc798b" + ], + "request-id": [ + "dc26284d-8787-41ec-ae6b-6c8ec7bc798b" + ], + "elapsed-time": [ + "183" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-correlation-request-id": [ + "b9f36a34-b63c-4ba9-a626-610b0c919804" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105840Z:b9f36a34-b63c-4ba9-a626-610b0c919804" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:59:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0eef3958-50c4-4064-a3df-3ff25f2924ec" + ], + "request-id": [ + "0eef3958-50c4-4064-a3df-3ff25f2924ec" + ], + "elapsed-time": [ + "215" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-correlation-request-id": [ + "e9e3099f-0667-4d62-be6f-d15c94f99095" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105910Z:e9e3099f-0667-4d62-be6f-d15c94f99095" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 10:59:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1a929a10-ac71-40b9-96be-d9b9e40f8462" + ], + "request-id": [ + "1a929a10-ac71-40b9-96be-d9b9e40f8462" + ], + "elapsed-time": [ + "343" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" + ], + "x-ms-correlation-request-id": [ + "135740db-68bb-4ff3-ba75-7913aff5242d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T105940Z:135740db-68bb-4ff3-ba75-7913aff5242d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:00:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "76d7a6b4-d164-4a1a-8139-efc84d5f8f60" + ], + "request-id": [ + "76d7a6b4-d164-4a1a-8139-efc84d5f8f60" + ], + "elapsed-time": [ + "114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14767" + ], + "x-ms-correlation-request-id": [ + "144b9121-8e2e-4a0d-bd0f-202175823232" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110011Z:144b9121-8e2e-4a0d-bd0f-202175823232" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:00:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "11c1bd3b-3776-4a25-9daa-4fe173866397" + ], + "request-id": [ + "11c1bd3b-3776-4a25-9daa-4fe173866397" + ], + "elapsed-time": [ + "118" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14766" + ], + "x-ms-correlation-request-id": [ + "24b62668-5c7d-48be-b977-a1c1e45194a2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110041Z:24b62668-5c7d-48be-b977-a1c1e45194a2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:01:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5818e3de-7484-4d4e-9afd-dd1908c1e297" + ], + "request-id": [ + "5818e3de-7484-4d4e-9afd-dd1908c1e297" + ], + "elapsed-time": [ + "147" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14765" + ], + "x-ms-correlation-request-id": [ + "ce32e522-7737-490e-95fe-9ce0ae60918d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110111Z:ce32e522-7737-490e-95fe-9ce0ae60918d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:01:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "745d8ffc-5cc6-4888-abc3-72788a512879" + ], + "request-id": [ + "745d8ffc-5cc6-4888-abc3-72788a512879" + ], + "elapsed-time": [ + "114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14764" + ], + "x-ms-correlation-request-id": [ + "cde577ef-0c5a-4b08-bd8b-b96d426a1d07" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110141Z:cde577ef-0c5a-4b08-bd8b-b96d426a1d07" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:02:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "509b9682-4675-4ebe-adcc-53afb55f6c34" + ], + "request-id": [ + "509b9682-4675-4ebe-adcc-53afb55f6c34" + ], + "elapsed-time": [ + "109" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14763" + ], + "x-ms-correlation-request-id": [ + "57acd75d-4aa1-43d9-877c-fece67cd9595" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110212Z:57acd75d-4aa1-43d9-877c-fece67cd9595" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:02:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dfa552bb-afa3-4fba-abb0-4e35f2c478e0" + ], + "request-id": [ + "dfa552bb-afa3-4fba-abb0-4e35f2c478e0" + ], + "elapsed-time": [ + "129" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14762" + ], + "x-ms-correlation-request-id": [ + "fd9cfa4d-74ed-4e0d-b697-af171661eb1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110242Z:fd9cfa4d-74ed-4e0d-b697-af171661eb1e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"provisioning\",\"statusDetails\":\"\",\"provisioningState\":\"provisioning\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:03:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d8f8cb16-c0bd-4945-a4f9-5de7c4587366" + ], + "request-id": [ + "d8f8cb16-c0bd-4945-a4f9-5de7c4587366" + ], + "elapsed-time": [ + "235" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-correlation-request-id": [ + "3f81ea25-c965-4ff7-9ac2-3428e2086058" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110312Z:3f81ea25-c965-4ff7-9ac2-3428e2086058" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119\",\"name\":\"azs-8119\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":2,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"standard\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:03:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T10%3A42%3A50.7912942Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "00c50ff2-e023-42c1-abcc-4409fb127d1f" + ], + "request-id": [ + "00c50ff2-e023-42c1-abcc-4409fb127d1f" + ], + "elapsed-time": [ + "127" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-correlation-request-id": [ + "389aad18-e78f-42a0-acf8-305b3a0993c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110342Z:389aad18-e78f-42a0-acf8-305b3a0993c6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet1595/providers/Microsoft.Search/searchServices/azs-8119?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy04MTE5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27017ccc-d6bb-45a2-9eea-ec41b0cd7a1c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:03:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "27017ccc-d6bb-45a2-9eea-ec41b0cd7a1c" + ], + "request-id": [ + "27017ccc-d6bb-45a2-9eea-ec41b0cd7a1c" + ], + "elapsed-time": [ + "2418" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1145" + ], + "x-ms-correlation-request-id": [ + "065d1922-1876-4c1b-bcfc-9ad7bcae6617" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110346Z:065d1922-1876-4c1b-bcfc-9ad7bcae6617" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet1595" + ], + "GenerateServiceName": [ + "azs-8119" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json index 703cdce1f5c29..d1fdc12c23103 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/DeleteServiceIsIdempotent.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4afa4fb2-d64c-483f-a9d6-6eaaf6bd5ad5" + "9ccfebb7-826c-4560-afaf-f057fec1e979" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:18 GMT" + "Thu, 14 Dec 2017 10:08:50 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1197" ], "x-ms-request-id": [ - "1ed78286-ba9c-4f13-b46d-668a271c1019" + "95aa8e64-f80e-43f8-a22d-ce0c8dff57ea" ], "x-ms-correlation-request-id": [ - "1ed78286-ba9c-4f13-b46d-668a271c1019" + "95aa8e64-f80e-43f8-a22d-ce0c8dff57ea" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055619Z:1ed78286-ba9c-4f13-b46d-668a271c1019" + "CENTRALUS:20171214T100850Z:95aa8e64-f80e-43f8-a22d-ce0c8dff57ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet6582?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2NTgyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet957?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "05bba5a0-c248-4069-80dc-bcb547ac211b" + "39c10c6d-5c69-4e9f-9fa0-558565f43c77" ], "accept-language": [ "en-US" @@ -81,10 +81,10 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582\",\r\n \"name\": \"azsmnet6582\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet957\",\r\n \"name\": \"azsmnet957\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "175" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:19 GMT" + "Thu, 14 Dec 2017 10:08:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1167" + "1196" ], "x-ms-request-id": [ - "ceac39df-b683-4646-ab57-41273acf12db" + "fb1dad5f-e5bf-4d3c-b8aa-9746ce69c901" ], "x-ms-correlation-request-id": [ - "ceac39df-b683-4646-ab57-41273acf12db" + "fb1dad5f-e5bf-4d3c-b8aa-9746ce69c901" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055619Z:ceac39df-b683-4646-ab57-41273acf12db" + "CENTRALUS:20171214T100851Z:fb1dad5f-e5bf-4d3c-b8aa-9746ce69c901" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet957/providers/Microsoft.Search/searchServices/azs-2962?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTI5NjI/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -132,7 +132,7 @@ "141" ], "x-ms-client-request-id": [ - "3b29caaf-07db-4905-ab8e-3604695a96ee" + "b9a45932-e82a-484c-bb5e-4d0de020a56f" ], "accept-language": [ "en-US" @@ -142,10 +142,10 @@ "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" ] }, - "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438\",\"name\":\"azs-7438\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet957/providers/Microsoft.Search/searchServices/azs-2962\",\"name\":\"azs-2962\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", "ResponseHeaders": { "Content-Length": [ - "385" + "384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -157,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:21 GMT" + "Thu, 14 Dec 2017 10:08:54 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2017-12-13T05%3A56%3A21.301558Z'\"" + "W/\"datetime'2017-12-14T10%3A08%3A54.4807075Z'\"" ], "x-ms-request-id": [ - "3b29caaf-07db-4905-ab8e-3604695a96ee" + "b9a45932-e82a-484c-bb5e-4d0de020a56f" ], "request-id": [ - "3b29caaf-07db-4905-ab8e-3604695a96ee" + "b9a45932-e82a-484c-bb5e-4d0de020a56f" ], "elapsed-time": [ - "1006" + "2611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,25 +181,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1166" + "1195" ], "x-ms-correlation-request-id": [ - "25bfe945-daed-4332-b11b-d8501eae3382" + "4e605b47-016e-4784-9dbb-5f899bd57b34" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055621Z:25bfe945-daed-4332-b11b-d8501eae3382" + "CENTRALUS:20171214T100854Z:4e605b47-016e-4784-9dbb-5f899bd57b34" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet957/providers/Microsoft.Search/searchServices/azs-2962?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTI5NjI/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23078fa4-5712-4400-a278-1994564e95cb" + "a13a5a84-8d08-44ee-acbc-8a84a2f87822" ], "accept-language": [ "en-US" @@ -221,19 +221,19 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:22 GMT" + "Thu, 14 Dec 2017 10:08:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "23078fa4-5712-4400-a278-1994564e95cb" + "a13a5a84-8d08-44ee-acbc-8a84a2f87822" ], "request-id": [ - "23078fa4-5712-4400-a278-1994564e95cb" + "a13a5a84-8d08-44ee-acbc-8a84a2f87822" ], "elapsed-time": [ - "823" + "940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,25 +242,25 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1165" + "1194" ], "x-ms-correlation-request-id": [ - "e7768fa3-ecdb-4e3d-8620-05109011cd35" + "62a68804-1798-4b94-bd92-315530fd14f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055622Z:e7768fa3-ecdb-4e3d-8620-05109011cd35" + "CENTRALUS:20171214T100856Z:62a68804-1798-4b94-bd92-315530fd14f5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet6582/providers/Microsoft.Search/searchServices/azs-7438?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy03NDM4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet957/providers/Microsoft.Search/searchServices/azs-2962?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTI5NjI/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "785383d5-ef47-44c7-91ea-180ca2782941" + "c3bdecc2-8dc2-40be-8492-9e4b8c559f5b" ], "accept-language": [ "en-US" @@ -279,22 +279,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 05:56:22 GMT" + "Thu, 14 Dec 2017 10:08:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1164" + "1193" ], "x-ms-request-id": [ - "fdc33e47-8a61-48b3-83ac-de43d2f71523" + "be3fb7b8-6edf-4d07-85b2-ec94b9db7c91" ], "x-ms-correlation-request-id": [ - "fdc33e47-8a61-48b3-83ac-de43d2f71523" + "be3fb7b8-6edf-4d07-85b2-ec94b9db7c91" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T055622Z:fdc33e47-8a61-48b3-83ac-de43d2f71523" + "CENTRALUS:20171214T100856Z:be3fb7b8-6edf-4d07-85b2-ec94b9db7c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,10 +305,10 @@ ], "Names": { "GenerateName": [ - "azsmnet6582" + "azsmnet957" ], "GenerateServiceName": [ - "azs-7438" + "azs-2962" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json new file mode 100644 index 0000000000000..7577106b59876 --- /dev/null +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdateServiceWithInvalidNameGivesNotFound.json @@ -0,0 +1,192 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11931465-0489-440f-b09a-11a246ba02f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\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": [ + "Thu, 14 Dec 2017 11:03:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1139" + ], + "x-ms-request-id": [ + "f720dd74-9055-4457-ba50-376393b29c81" + ], + "x-ms-correlation-request-id": [ + "f720dd74-9055-4457-ba50-376393b29c81" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110352Z:f720dd74-9055-4457-ba50-376393b29c81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8614?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NjE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "d79b783d-2374-4539-bf2e-58bd0e626c33" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8614\",\r\n \"name\": \"azsmnet8614\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:03:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1138" + ], + "x-ms-request-id": [ + "e85a344d-a750-4893-84b9-edccd2bcfc7f" + ], + "x-ms-correlation-request-id": [ + "e85a344d-a750-4893-84b9-edccd2bcfc7f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110353Z:e85a344d-a750-4893-84b9-edccd2bcfc7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8614/providers/Microsoft.Search/searchServices/missing?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL21pc3Npbmc/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "PATCH", + "RequestBody": "{}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ], + "x-ms-client-request-id": [ + "e9b0cea1-628a-4420-aa18-e54d543ac6b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Search/searchServices/missing' under resource group 'azsmnet8614' was not found.\"}}", + "ResponseHeaders": { + "Content-Length": [ + "154" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:03:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "64875bad-5119-491d-9ff4-a5ed0b586e6f" + ], + "x-ms-correlation-request-id": [ + "64875bad-5119-491d-9ff4-a5ed0b586e6f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110354Z:64875bad-5119-491d-9ff4-a5ed0b586e6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + "GenerateName": [ + "azsmnet8614" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json new file mode 100644 index 0000000000000..9caf8bfcf7bcb --- /dev/null +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.SearchServiceTests/UpdatingImmutablePropertiesThrowsCloudException.json @@ -0,0 +1,430 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b2162da-b421-4776-b986-5054c20ab104" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\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": [ + "Thu, 14 Dec 2017 11:04:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1130" + ], + "x-ms-request-id": [ + "a8de5a2e-b150-4afb-8c7a-856cc52e4bb8" + ], + "x-ms-correlation-request-id": [ + "a8de5a2e-b150-4afb-8c7a-856cc52e4bb8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110404Z:a8de5a2e-b150-4afb-8c7a-856cc52e4bb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet321?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMjE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "f6dfc9c1-63e1-4750-a4fd-51f90e49a4b3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321\",\r\n \"name\": \"azsmnet321\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:04:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1129" + ], + "x-ms-request-id": [ + "911b6ae6-570f-4e59-a480-616b8193215d" + ], + "x-ms-correlation-request-id": [ + "911b6ae6-570f-4e59-a480-616b8193215d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110404Z:911b6ae6-570f-4e59-a480-616b8193215d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321/providers/Microsoft.Search/searchServices/azs-685?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTY4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "141" + ], + "x-ms-client-request-id": [ + "a7a31d77-b800-4c6a-910d-82c6c97d547e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321/providers/Microsoft.Search/searchServices/azs-685\",\"name\":\"azs-685\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseHeaders": { + "Content-Length": [ + "382" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:04:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2017-12-14T11%3A04%3A06.4543875Z'\"" + ], + "x-ms-request-id": [ + "a7a31d77-b800-4c6a-910d-82c6c97d547e" + ], + "request-id": [ + "a7a31d77-b800-4c6a-910d-82c6c97d547e" + ], + "elapsed-time": [ + "883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1128" + ], + "x-ms-correlation-request-id": [ + "712175b5-2e92-41a2-a3ce-34b1136f8891" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110406Z:712175b5-2e92-41a2-a3ce-34b1136f8891" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321/providers/Microsoft.Search/searchServices/azs-685?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTY4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostingMode\": \"highDensity\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "62" + ], + "x-ms-client-request-id": [ + "3143f6ec-b8cd-4567-97dc-e348a207897e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Updating HostingMode of an existing search service is not allowed.\",\"target\":null,\"details\":null}}", + "ResponseHeaders": { + "Content-Length": [ + "139" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:04:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3143f6ec-b8cd-4567-97dc-e348a207897e" + ], + "request-id": [ + "3143f6ec-b8cd-4567-97dc-e348a207897e" + ], + "elapsed-time": [ + "153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1127" + ], + "x-ms-correlation-request-id": [ + "595a0ec2-f61d-4f9b-8867-7d70c89eb923" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110407Z:595a0ec2-f61d-4f9b-8867-7d70c89eb923" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321/providers/Microsoft.Search/searchServices/azs-685?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTY4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "1a9a4369-f196-4888-8e53-0d42cf0cd682" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"id\":\"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321/providers/Microsoft.Search/searchServices/azs-685\",\"name\":\"azs-685\",\"type\":\"Microsoft.Search/searchServices\",\"location\":\"West US\",\"properties\":{\"replicaCount\":1,\"partitionCount\":1,\"status\":\"running\",\"statusDetails\":\"\",\"provisioningState\":\"succeeded\",\"hostingMode\":\"Default\"},\"sku\":{\"name\":\"free\"}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"datetime'2017-12-14T11%3A04%3A07.6815665Z'\"" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1a9a4369-f196-4888-8e53-0d42cf0cd682" + ], + "request-id": [ + "1a9a4369-f196-4888-8e53-0d42cf0cd682" + ], + "elapsed-time": [ + "594" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1126" + ], + "x-ms-correlation-request-id": [ + "c0099b52-ad62-4207-b82a-ae585d6a114f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110407Z:c0099b52-ad62-4207-b82a-ae585d6a114f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet321/providers/Microsoft.Search/searchServices/azs-685?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWFyY2gvc2VhcmNoU2VydmljZXMvYXpzLTY4NT9hcGktdmVyc2lvbj0yMDE1LTA4LTE5", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"basic\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "42" + ], + "x-ms-client-request-id": [ + "8066720c-964c-4544-9ca0-1fb67930e71f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"error\":{\"code\":\"BadRequest\",\"message\":\"Updating Sku of an existing search service is not allowed.\",\"target\":null,\"details\":null}}", + "ResponseHeaders": { + "Content-Length": [ + "131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Language": [ + "en" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 14 Dec 2017 11:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8066720c-964c-4544-9ca0-1fb67930e71f" + ], + "request-id": [ + "8066720c-964c-4544-9ca0-1fb67930e71f" + ], + "elapsed-time": [ + "135" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1125" + ], + "x-ms-correlation-request-id": [ + "9833545c-9454-4226-ab8d-0232687717e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20171214T110408Z:9833545c-9454-4226-ab8d-0232687717e7" + ] + }, + "StatusCode": 400 + } + ], + "Names": { + "GenerateName": [ + "azsmnet321" + ], + "GenerateServiceName": [ + "azs-685" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json index 731385859919f..d9d8089209d52 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Search.Tests.SearchManagementClientTests/RequestIdIsReturnedInResponse.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e017868-140a-4e0b-95ae-64e51a1afdf0" + "17ca2e9f-7ba4-4ab8-a8a7-006a8c7b3258" ], "accept-language": [ "en-US" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:30 GMT" + "Thu, 14 Dec 2017 11:04:09 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1123" ], "x-ms-request-id": [ - "6bd26b2e-b488-4bbb-9bde-e7b67129f71c" + "b29f33d3-d96a-4407-896f-a89c880170e4" ], "x-ms-correlation-request-id": [ - "6bd26b2e-b488-4bbb-9bde-e7b67129f71c" + "b29f33d3-d96a-4407-896f-a89c880170e4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063730Z:6bd26b2e-b488-4bbb-9bde-e7b67129f71c" + "CENTRALUS:20171214T110409Z:b29f33d3-d96a-4407-896f-a89c880170e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet8614?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NjE0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet3605?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNjA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -71,7 +71,7 @@ "29" ], "x-ms-client-request-id": [ - "c7514bd6-3ec3-4f2c-8f90-964c64602eda" + "0436dfed-3677-4a77-b776-8438965bc876" ], "accept-language": [ "en-US" @@ -81,7 +81,7 @@ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8614\",\r\n \"name\": \"azsmnet8614\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3605\",\r\n \"name\": \"azsmnet3605\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -96,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:30 GMT" + "Thu, 14 Dec 2017 11:04:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1109" + "1122" ], "x-ms-request-id": [ - "b0cfbec0-e2ca-45f1-9004-128d60c30b08" + "cc977871-1178-4638-9a16-5a5f3f340135" ], "x-ms-correlation-request-id": [ - "b0cfbec0-e2ca-45f1-9004-128d60c30b08" + "cc977871-1178-4638-9a16-5a5f3f340135" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063730Z:b0cfbec0-e2ca-45f1-9004-128d60c30b08" + "CENTRALUS:20171214T110409Z:cc977871-1178-4638-9a16-5a5f3f340135" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet8614/providers/Microsoft.Search/searchServices?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjE0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet3605/providers/Microsoft.Search/searchServices?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Wed, 13 Dec 2017 06:37:30 GMT" + "Thu, 14 Dec 2017 11:04:10 GMT" ], "Pragma": [ "no-cache" @@ -167,7 +167,7 @@ "c4cfce79-eb42-4e61-9909-84510c04706f" ], "elapsed-time": [ - "39" + "32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -176,13 +176,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14758" ], "x-ms-correlation-request-id": [ - "d5addd8a-15d0-4d74-8a03-edcf7179e7e1" + "93c69672-9ded-4f59-8773-53d9ca2e36f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20171213T063731Z:d5addd8a-15d0-4d74-8a03-edcf7179e7e1" + "CENTRALUS:20171214T110410Z:93c69672-9ded-4f59-8773-53d9ca2e36f0" ] }, "StatusCode": 200 @@ -190,7 +190,7 @@ ], "Names": { "GenerateName": [ - "azsmnet8614" + "azsmnet3605" ] }, "Variables": { diff --git a/src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchServiceTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchServiceTests.cs index f9daa3e3a39b2..f1ae12d054985 100644 --- a/src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchServiceTests.cs +++ b/src/SDKs/Search/Management/Search.Management.Tests/Tests/SearchServiceTests.cs @@ -4,7 +4,9 @@ namespace Microsoft.Azure.Management.Search.Tests { + using System.Collections.Generic; using System.Linq; + using System.Net; using Microsoft.Azure.Management.Search.Models; using Microsoft.Azure.Search.Tests.Utilities; using Rest.Azure; @@ -111,7 +113,8 @@ public void CheckNameAvailabilityFailsOnInvalidName() { SearchManagementClient searchMgmt = GetSearchManagementClient(); - CheckNameAvailabilityOutput result = searchMgmt.Services.CheckNameAvailability(InvalidServiceName); + CheckNameAvailabilityOutput result = + searchMgmt.Services.CheckNameAvailability(InvalidServiceName); Assert.False(string.IsNullOrEmpty(result.Message)); Assert.Equal(UnavailableNameReason.Invalid, result.Reason); @@ -167,26 +170,154 @@ public void CanScaleServiceUpAndDown() Run(() => { SearchManagementClient searchMgmt = GetSearchManagementClient(); - SearchService service = CreateServiceForSku(searchMgmt, SkuName.Basic); + SearchService service = CreateServiceForSku(searchMgmt, SkuName.Standard); - service = WaitForProvisioningToComplete(searchMgmt, service); + WaitForProvisioningToComplete(searchMgmt, service); + + // Scale up to 2 replicas x 2 partitions. + service = + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { ReplicaCount = 2, PartitionCount = 2 }); - // Scale up to 2 replicas. - service.ReplicaCount = 2; - service = searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, service.Name, service); service = WaitForProvisioningToComplete(searchMgmt, service); Assert.Equal(2, service.ReplicaCount); + Assert.Equal(2, service.PartitionCount); + + // Scale back down to 1 replica x 1 partition. + service = + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { ReplicaCount = 1, PartitionCount = 1 }); - // Scale back down to 1 replica. - service.ReplicaCount = 1; - service = searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, service.Name, service); service = WaitForProvisioningToComplete(searchMgmt, service); Assert.Equal(1, service.ReplicaCount); + Assert.Equal(1, service.PartitionCount); searchMgmt.Services.Delete(Data.ResourceGroupName, service.Name); }); } + [Fact] + public void CreateStandardServicePollsAutomatically() + { + Run(() => + { + // Create an S1 with multiple replicas so that the operation will take some time. + SearchService service = DefineServiceWithSku(SkuName.Standard); + service.ReplicaCount = 2; + + SearchManagementClient searchMgmt = GetSearchManagementClient(); + string serviceName = SearchTestUtilities.GenerateServiceName(); + + service = searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, serviceName, service); + + // Unlike BeginCreateOrUpdate, CreateOrUpdate should have already polled until + // provisioning is complete. + Assert.Equal(ProvisioningState.Succeeded, service.ProvisioningState); + Assert.Equal(SearchServiceStatus.Running, service.Status); + + searchMgmt.Services.Delete(Data.ResourceGroupName, service.Name); + }); + } + + [Fact] + public void CanUpdateTags() + { + Run(() => + { + SearchManagementClient searchMgmt = GetSearchManagementClient(); + SearchService service = CreateFreeService(searchMgmt); + + var testTags = + new Dictionary() + { + ["testTag"] = "testValue", + ["anotherTag"] = "anotherValue" + }; + + // Add some tags. + service = + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { Tags = testTags }); + + Assert.Equal(testTags, service.Tags); + + // Modify a tag. + testTags["anotherTag"] = "differentValue"; + + service = + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { Tags = testTags }); + + Assert.Equal(testTags, service.Tags); + + // Remove the second tag. + testTags.Remove("anotherTag"); + + service = + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { Tags = testTags }); + + Assert.Equal(testTags, service.Tags); + }); + } + + [Fact] + public void UpdatingImmutablePropertiesThrowsCloudException() + { + Run(() => + { + SearchManagementClient searchMgmt = GetSearchManagementClient(); + SearchService service = CreateFreeService(searchMgmt); + + CloudException e = + Assert.Throws(() => + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { HostingMode = HostingMode.HighDensity })); + + Assert.Equal("Updating HostingMode of an existing search service is not allowed.", e.Message); + + // There is currently a validation bug in the Azure Search management API, so we can't + // test for an exception yet. Instead, just make sure the location doesn't actually change. + SearchService updatedService = + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { Location = "East US" }); // We run live tests in West US. + + Assert.Equal(service.Location, updatedService.Location); + + /*e = + Assert.Throws(() => + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { Location = "East US" })); // We run live tests in West US. + + Assert.Equal("Updating Location of an existing search service is not allowed.", e.Message);*/ + + e = + Assert.Throws(() => + searchMgmt.Services.Update( + Data.ResourceGroupName, + service.Name, + new SearchService() { Sku = new Sku(SkuName.Basic) })); + + Assert.Equal("Updating Sku of an existing search service is not allowed.", e.Message); + }); + } + [Fact] public void CreateServiceWithInvalidNameGivesUsefulMessage() { @@ -196,17 +327,35 @@ public void CreateServiceWithInvalidNameGivesUsefulMessage() SearchService service = DefineServiceWithSku(SkuName.Free); CloudException e = - Assert.Throws(() => searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, InvalidServiceName, service)); + Assert.Throws(() => + searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, InvalidServiceName, service)); string expectedMessage = - $"Service name '{InvalidServiceName}' is invalid: Service name must only contain lowercase letters, digits or dashes, cannot " + - "start or end with or contain consecutive dashes and is limited to 60 characters."; + $"Service name '{InvalidServiceName}' is invalid: Service name must only contain " + + "lowercase letters, digits or dashes, cannot start or end with or contain consecutive " + + "dashes and is limited to 60 characters."; Assert.Equal(expectedMessage, e.Message); }); } - private static void AssertServicesEqual(SearchService a, SearchService b) => Assert.Equal(a, b, new ModelComparer()); + [Fact] + public void UpdateServiceWithInvalidNameGivesNotFound() + { + Run(() => + { + SearchManagementClient searchMgmt = GetSearchManagementClient(); + + CloudException e = + Assert.Throws(() => + searchMgmt.Services.Update(Data.ResourceGroupName, "missing", new SearchService())); + + Assert.Equal(HttpStatusCode.NotFound, e.Response.StatusCode); + }); + } + + private static void AssertServicesEqual(SearchService a, SearchService b) => + Assert.Equal(a, b, new ModelComparer()); private SearchService DefineServiceWithSku(SkuName sku) { @@ -225,26 +374,29 @@ private SearchService CreateServiceForSku(SearchManagementClient searchMgmt, Sku SearchService service = DefineServiceWithSku(sku); - service = searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, serviceName, service); + service = searchMgmt.Services.BeginCreateOrUpdate(Data.ResourceGroupName, serviceName, service); Assert.NotNull(service); return service; } - private SearchService CreateFreeService(SearchManagementClient searchMgmt) => CreateServiceForSku(searchMgmt, SkuName.Free); + private SearchService CreateFreeService(SearchManagementClient searchMgmt) => + CreateServiceForSku(searchMgmt, SkuName.Free); private void TestCreateService(SearchService service) { SearchManagementClient searchMgmt = GetSearchManagementClient(); string serviceName = SearchTestUtilities.GenerateServiceName(); - service = searchMgmt.Services.CreateOrUpdate(Data.ResourceGroupName, serviceName, service); + service = searchMgmt.Services.BeginCreateOrUpdate(Data.ResourceGroupName, serviceName, service); service = WaitForProvisioningToComplete(searchMgmt, service); searchMgmt.Services.Delete(Data.ResourceGroupName, service.Name); } - private SearchService WaitForProvisioningToComplete(SearchManagementClient searchMgmt, SearchService service) + private SearchService WaitForProvisioningToComplete( + SearchManagementClient searchMgmt, + SearchService service) { while (service.ProvisioningState == ProvisioningState.Provisioning) { diff --git a/src/SDKs/_metadata/search_resource-manager.txt b/src/SDKs/_metadata/search_resource-manager.txt index 9014ce7d683a7..4aff0d29f7025 100644 --- a/src/SDKs/_metadata/search_resource-manager.txt +++ b/src/SDKs/_metadata/search_resource-manager.txt @@ -1,9 +1,9 @@ -2017-12-13 05:31:07 UTC +2018-01-09 22:16:53 UTC 1) azure-rest-api-specs repository information -GitHub user: Azure -Branch: current -Commit: 6f19801e99f2962e77205a9d5d5f46a3386eb66f +GitHub user: brjohnstmsft +Branch: update-search-mgmt-spec +Commit: 84385fa1e6ada986582b2381660f737fd6fa9dc8 2) AutoRest information Requested version: latest From 7234edd6a7695ba51bb1f74d32c34503249c796e Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Tue, 9 Jan 2018 16:05:34 -0800 Subject: [PATCH 07/10] [Azure Search] Adding support for Operations API Added new generated code, plus a scenario test and corresponding session record. --- .../Generated/IOperations.cs | 47 ++++ .../Generated/ISearchManagementClient.cs | 5 + .../Generated/Models/Operation.cs | 62 +++++ .../Generated/Models/OperationDisplay.cs | 79 ++++++ .../Management.Search/Generated/Operations.cs | 228 ++++++++++++++++++ .../Generated/OperationsExtensions.cs | 57 +++++ .../SdkInfo_SearchManagementClient.cs | 1 + .../Generated/SearchManagementClient.cs | 6 + ...stOperationsReturnsExpectedOperations.json | 199 +++++++++++++++ .../Tests/OperationsTests.cs | 106 ++++++++ .../_metadata/search_resource-manager.txt | 4 +- 11 files changed, 792 insertions(+), 2 deletions(-) create mode 100644 src/SDKs/Search/Management/Management.Search/Generated/IOperations.cs create mode 100644 src/SDKs/Search/Management/Management.Search/Generated/Models/Operation.cs create mode 100644 src/SDKs/Search/Management/Management.Search/Generated/Models/OperationDisplay.cs create mode 100644 src/SDKs/Search/Management/Management.Search/Generated/Operations.cs create mode 100644 src/SDKs/Search/Management/Management.Search/Generated/OperationsExtensions.cs create mode 100644 src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json create mode 100644 src/SDKs/Search/Management/Search.Management.Tests/Tests/OperationsTests.cs diff --git a/src/SDKs/Search/Management/Management.Search/Generated/IOperations.cs b/src/SDKs/Search/Management/Management.Search/Generated/IOperations.cs new file mode 100644 index 0000000000000..e83e797efafc2 --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/Generated/IOperations.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.Search +{ + 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.Search 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)); + } +} diff --git a/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs index d66b35d8b07a2..00510b4f91651 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/ISearchManagementClient.cs @@ -71,6 +71,11 @@ public partial interface ISearchManagementClient : System.IDisposable bool? GenerateClientRequestId { get; set; } + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + /// /// Gets the IAdminKeysOperations. /// diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/Operation.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Operation.cs new file mode 100644 index 0000000000000..a116c898cb69b --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/Operation.cs @@ -0,0 +1,62 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Search.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a 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. + /// + /// The name of the operation. This name is of the + /// form {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 the name of the operation. This name is of the form + /// {provider}/{resource}/{operation}. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the object that describes the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; private set; } + + } +} diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/OperationDisplay.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/OperationDisplay.cs new file mode 100644 index 0000000000000..3f6de21a97d8d --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/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.Search.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. + /// + /// The friendly name of the resource + /// provider. + /// The operation type: read, write, delete, + /// listKeys/action, etc. + /// The resource type on which the operation is + /// performed. + /// The 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 the friendly name of the resource provider. + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; private set; } + + /// + /// Gets the operation type: read, write, delete, listKeys/action, etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; private set; } + + /// + /// Gets the resource type on which the operation is performed. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; private set; } + + /// + /// Gets the friendly name of the operation. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; private set; } + + } +} diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Operations.cs b/src/SDKs/Search/Management/Management.Search/Generated/Operations.cs new file mode 100644 index 0000000000000..9ce7a08a7678f --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/Generated/Operations.cs @@ -0,0 +1,228 @@ +// +// 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.Search +{ + 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(SearchManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SearchManagementClient + /// + public SearchManagementClient Client { get; private set; } + + /// + /// Lists all of the available REST API operations of the Microsoft.Search + /// 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.Search/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; + } + + } +} diff --git a/src/SDKs/Search/Management/Management.Search/Generated/OperationsExtensions.cs b/src/SDKs/Search/Management/Management.Search/Generated/OperationsExtensions.cs new file mode 100644 index 0000000000000..9a1b9d01e9fd2 --- /dev/null +++ b/src/SDKs/Search/Management/Management.Search/Generated/OperationsExtensions.cs @@ -0,0 +1,57 @@ +// +// 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.Search +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available REST API operations of the Microsoft.Search + /// provider. + /// + /// + /// The operations group for this extension method. + /// + public static IEnumerable List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Search + /// 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; + } + } + + } +} diff --git a/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs index b50fd2fcfe3c1..60173659a4c09 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/SdkInfo_SearchManagementClient.cs @@ -12,6 +12,7 @@ public static IEnumerable> ApiInfo_SearchManagemen return new Tuple[] { new Tuple("Search", "AdminKeys", "2015-08-19"), + new Tuple("Search", "Operations", "2015-08-19"), new Tuple("Search", "QueryKeys", "2015-08-19"), new Tuple("Search", "Services", "2015-08-19"), }.AsEnumerable(); diff --git a/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs b/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs index b9ec90550bdb2..a02da739e2b44 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/SearchManagementClient.cs @@ -74,6 +74,11 @@ public partial class SearchManagementClient : ServiceClient public bool? GenerateClientRequestId { get; set; } + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + /// /// Gets the IAdminKeysOperations. /// @@ -290,6 +295,7 @@ public SearchManagementClient(System.Uri baseUri, ServiceClientCredentials crede /// private void Initialize() { + Operations = new Operations(this); AdminKeys = new AdminKeysOperations(this); QueryKeys = new QueryKeysOperations(this); Services = new ServicesOperations(this); diff --git a/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json new file mode 100644 index 0000000000000..20ce5d10075fb --- /dev/null +++ b/src/SDKs/Search/Management/Search.Management.Tests/SessionRecords/Microsoft.Azure.Management.Search.Tests.OperationsTests/ListOperationsReturnsExpectedOperations.json @@ -0,0 +1,199 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search/register?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5cc5049-207c-41e2-9282-e488414a308c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\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": [ + "Wed, 10 Jan 2018 00:00:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "6f84d40f-d400-42a0-b569-659c3bc18bfc" + ], + "x-ms-correlation-request-id": [ + "6f84d40f-d400-42a0-b569-659c3bc18bfc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20180110T000017Z:6f84d40f-d400-42a0-b569-659c3bc18bfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourcegroups/azsmnet186?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2M3MjliMmEtNGY4Ni00YmIyLWFiZTgtNGI4NjQ3YWYxNTZjL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxODY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "95cefdcc-e2f9-4dc2-a8ec-3a61822a184c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.5.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3c729b2a-4f86-4bb2-abe8-4b8647af156c/resourceGroups/azsmnet186\",\r\n \"name\": \"azsmnet186\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Jan 2018 00:00:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "31a2b1c4-cda0-4821-b177-8e75a0a01713" + ], + "x-ms-correlation-request-id": [ + "31a2b1c4-cda0-4821-b177-8e75a0a01713" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20180110T000017Z:31a2b1c4-cda0-4821-b177-8e75a0a01713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Search/operations?api-version=2015-08-19", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6445c6a3-25ce-47d4-95e5-bd6438415b19" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25211.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.2.0" + ] + }, + "ResponseBody": "{\"value\":[{\"name\":\"Microsoft.Search/register/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Register the Search Resource Provider\",\"description\":\"Registers the subscription for the search resource provider and enables the creation of search services.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/write\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Set Search Service\",\"description\":\"Creates or updates the search service.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/read\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Get Search Service\",\"description\":\"Reads the search service.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/delete\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Delete Search Service\",\"description\":\"Deletes the search service.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/start/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Start Search Service\",\"description\":\"Starts the search service.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/stop/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Stop Search Service\",\"description\":\"Stops the search service.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/listAdminKeys/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Get Admin Key\",\"description\":\"Reads the admin keys.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/regenerateAdminKey/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Regenerate Admin Key\",\"description\":\"Regenerates the admin key.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/queryKey/read\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"API Keys\",\"operation\":\"Get Query Key\",\"description\":\"Reads the query keys.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/createQueryKey/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Search Services\",\"operation\":\"Create Query Key\",\"description\":\"Creates the query key.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/queryKey/delete\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"API Keys\",\"operation\":\"Delete Query Key\",\"description\":\"Deletes the query key.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/checkNameAvailability/action\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Service Name Availability\",\"operation\":\"Check Service Name Availability\",\"description\":\"Checks availability of the service name.\"},\"origin\":\"user,system\"},{\"name\":\"Microsoft.Search/searchServices/diagnosticSettings/read\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Diagnostic Settings\",\"operation\":\"Get Diagnostic Setting\",\"description\":\"Gets the diganostic setting read for the resource\"},\"origin\":\"system\"},{\"name\":\"Microsoft.Search/searchServices/diagnosticSettings/write\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"Diagnostic Settings\",\"operation\":\"Set Diagnostic Setting\",\"description\":\"Creates or updates the diganostic setting for the resource\"},\"origin\":\"system\"},{\"name\":\"Microsoft.Search/searchServices/metricDefinitions/read\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"The metric definitions for the search service\",\"operation\":\"Read search service metric definitions\",\"description\":\"Gets the available metrics for the search service\"},\"origin\":\"system\",\"properties\":{\"serviceSpecification\":{\"metricSpecifications\":[{\"name\":\"SearchLatency\",\"displayName\":\"Search Latency\",\"displayDescription\":\"Average search latency for the search service\",\"unit\":\"Seconds\",\"aggregationType\":\"Average\",\"availabilities\":[{\"timeGrain\":\"PT1M\",\"blobDuration\":\"PT1H\"}]},{\"name\":\"SearchQueriesPerSecond\",\"displayName\":\"Search queries per second\",\"displayDescription\":\"Search queries per second for the search service\",\"unit\":\"CountPerSecond\",\"aggregationType\":\"Average\",\"availabilities\":[{\"timeGrain\":\"PT1M\",\"blobDuration\":\"PT1H\"}]},{\"name\":\"ThrottledSearchQueriesPercentage\",\"displayName\":\"Throttled search queries percentage\",\"displayDescription\":\"Percentage of search queries that were throttled for the search service\",\"unit\":\"Percent\",\"aggregationType\":\"Average\",\"availabilities\":[{\"timeGrain\":\"PT1M\",\"blobDuration\":\"PT1H\"}]}]}}},{\"name\":\"Microsoft.Search/searchServices/logDefinitions/read\",\"display\":{\"provider\":\"Microsoft Search\",\"resource\":\"The log definition for the search service\",\"operation\":\"Read search service log definitions\",\"description\":\"Gets the available logs for the search service\"},\"origin\":\"system\",\"properties\":{\"serviceSpecification\":{\"logSpecifications\":[{\"name\":\"OperationLogs\",\"displayName\":\"Operation Logs\",\"blobDuration\":\"PT1H\"}]}}}]}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 10 Jan 2018 00:00:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6445c6a3-25ce-47d4-95e5-bd6438415b19" + ], + "request-id": [ + "6445c6a3-25ce-47d4-95e5-bd6438415b19" + ], + "elapsed-time": [ + "0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "1fe7b65d-f109-4a96-a8ee-44acc10c0d47" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20180110T000018Z:1fe7b65d-f109-4a96-a8ee-44acc10c0d47" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet186" + ] + }, + "Variables": { + "SubscriptionId": "3c729b2a-4f86-4bb2-abe8-4b8647af156c" + } +} \ No newline at end of file diff --git a/src/SDKs/Search/Management/Search.Management.Tests/Tests/OperationsTests.cs b/src/SDKs/Search/Management/Search.Management.Tests/Tests/OperationsTests.cs new file mode 100644 index 0000000000000..0b1c10256df9c --- /dev/null +++ b/src/SDKs/Search/Management/Search.Management.Tests/Tests/OperationsTests.cs @@ -0,0 +1,106 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Management.Search.Tests +{ + using System.Linq; + using Microsoft.Azure.Management.Search.Models; + using Microsoft.Azure.Search.Tests.Utilities; + using Xunit; + + public sealed class OperationsTests : SearchTestBase + { + [Fact] + public void ListOperationsReturnsExpectedOperations() + { + Run(() => + { + SearchManagementClient searchMgmt = GetSearchManagementClient(); + + var expectedCoreOperations = new[] + { + new Operation( + name: "Microsoft.Search/register/action", + display: new OperationDisplay( + provider: "Microsoft Search", + operation: "Register the Search Resource Provider", + resource: "Search Services", + description: "Registers the subscription for the search resource provider and enables the creation of search services.")), + new Operation( + name: "Microsoft.Search/searchServices/write", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Search Services", + operation: "Set Search Service", + description: "Creates or updates the search service.")), + new Operation( + name: "Microsoft.Search/searchServices/read", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Search Services", + operation: "Get Search Service", + description: "Reads the search service.")), + new Operation( + name: "Microsoft.Search/searchServices/delete", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Search Services", + operation: "Delete Search Service", + description: "Deletes the search service.")), + new Operation( + name: "Microsoft.Search/searchServices/listAdminKeys/action", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Search Services", + operation: "Get Admin Key", + description: "Reads the admin keys.")), + new Operation( + name: "Microsoft.Search/searchServices/regenerateAdminKey/action", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Search Services", + operation: "Regenerate Admin Key", + description: "Regenerates the admin key.")), + new Operation( + name: "Microsoft.Search/searchServices/queryKey/read", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "API Keys", + operation: "Get Query Key", + description: "Reads the query keys.")), + new Operation( + name: "Microsoft.Search/searchServices/createQueryKey/action", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Search Services", + operation: "Create Query Key", + description: "Creates the query key.")), + new Operation( + name: "Microsoft.Search/searchServices/queryKey/delete", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "API Keys", + operation: "Delete Query Key", + description: "Deletes the query key.")), + new Operation( + name: "Microsoft.Search/checkNameAvailability/action", + display: new OperationDisplay( + provider: "Microsoft Search", + resource: "Service Name Availability", + operation: "Check Service Name Availability", + description: "Checks availability of the service name.")) + }; + + Operation[] actualOperations = searchMgmt.Operations.List().ToArray(); + + // There may be more operations than just the core ones expected by this test, but we don't + // want to break SDK tests every time we add a new operation. + foreach (Operation expectedCoreOperation in expectedCoreOperations) + { + Assert.Contains(expectedCoreOperation, actualOperations, new ModelComparer()); + } + }); + } + } +} diff --git a/src/SDKs/_metadata/search_resource-manager.txt b/src/SDKs/_metadata/search_resource-manager.txt index 4aff0d29f7025..d6ed1822ee603 100644 --- a/src/SDKs/_metadata/search_resource-manager.txt +++ b/src/SDKs/_metadata/search_resource-manager.txt @@ -1,9 +1,9 @@ -2018-01-09 22:16:53 UTC +2018-01-09 22:38:00 UTC 1) azure-rest-api-specs repository information GitHub user: brjohnstmsft Branch: update-search-mgmt-spec -Commit: 84385fa1e6ada986582b2381660f737fd6fa9dc8 +Commit: 6a31c5b2391c99143fb762d48d4ebc5120df358d 2) AutoRest information Requested version: latest From cb31adbc63fe5a5930d0a0dcde8cb5445d0496f7 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Tue, 9 Jan 2018 16:20:07 -0800 Subject: [PATCH 08/10] [Azure Search] Bumping major version number of management SDK A major version bump is necessary because the behavior of Services.CreateOrUpdate has changed. Specifically, service creation and scaling is now synchronous instead of asynchronous. Also, there is new API surface area that represents breaking changes from the .NET point of view (i.e. -- new methods added to existing interfaces). --- .../Management/Management.Search/Management.Search.csproj | 2 +- .../Management/Management.Search/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SDKs/Search/Management/Management.Search/Management.Search.csproj b/src/SDKs/Search/Management/Management.Search/Management.Search.csproj index 162e6a8922061..b9b6efbc66820 100644 --- a/src/SDKs/Search/Management/Management.Search/Management.Search.csproj +++ b/src/SDKs/Search/Management/Management.Search/Management.Search.csproj @@ -8,7 +8,7 @@ Makes it easy to manage Azure Search services and API keys from a .NET application. Microsoft Azure Search Management Library Management.Search - 1.0.2 + 2.0.0 Microsoft Azure Search;Microsoft Azure Search Management; This is the Azure Search Management SDK for .NET, based on version 2015-08-19 of the Azure Search Management REST API. It includes support for programmatically provisioning and managing Search services and API keys. It supports all available SKUs, including the new S3 and S3 High-Density SKUs. diff --git a/src/SDKs/Search/Management/Management.Search/Properties/AssemblyInfo.cs b/src/SDKs/Search/Management/Management.Search/Properties/AssemblyInfo.cs index eb7029efced87..a574a5fd41d62 100644 --- a/src/SDKs/Search/Management/Management.Search/Properties/AssemblyInfo.cs +++ b/src/SDKs/Search/Management/Management.Search/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Search Management Library")] [assembly: AssemblyDescription("Makes it easy to manage Azure Search services from a .NET application.")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.2.0")] +[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] From eedef3d6fc684a5ea6f132910aca735d1e2239c8 Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Wed, 10 Jan 2018 18:36:07 -0800 Subject: [PATCH 09/10] Fixing generate.cmd to point to the correct azure-rest-api-specs branch Since the refactor, the default branch is master, not current. --- tools/generate.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/generate.cmd b/tools/generate.cmd index 0993fd36ed8e6..e938ce262c073 100644 --- a/tools/generate.cmd +++ b/tools/generate.cmd @@ -24,7 +24,7 @@ if not "%req_help%" == "" ( echo ^ echo ^ echo ^ - echo ^ + echo ^ echo ^ echo. echo Example: generate.cmd monitor/data-plane 1.2.2 olydis new-cool-feature azure-rest-api-specs-pr @@ -46,7 +46,7 @@ if not "%req_help%" == "" ( set rp="%1" if not "%2" == "" (set version="%2") else (set version="latest") if not "%3" == "" (set specsRepoUser="%3") else (set specsRepoUser="Azure") -if not "%4" == "" (set specsRepoBranch="%4") else (set specsRepoBranch="current") +if not "%4" == "" (set specsRepoBranch="%4") else (set specsRepoBranch="master") if not "%5" == "" (set specsRepoName="%5") else (set specsRepoName="azure-rest-api-specs") if not "%6" == "" (set sdksFolder="%6") else (set sdksFolder=%~dp0..\src\SDKS) set configFile="https://github.com/%specsRepoUser%/%specsRepoName%/blob/%specsRepoBranch%/specification/%rp%/readme.md" From 0a3702bd316802f182bef521deb2562cb8160e8a Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Wed, 10 Jan 2018 18:36:57 -0800 Subject: [PATCH 10/10] [Azure Search] Regenerating management SDK from the latest spec This includes some minor doc changes. --- .../Management.Search/Generated/Models/Resource.cs | 7 ++++--- .../Generated/Models/SearchManagementRequestOptions.cs | 2 +- .../Generated/Models/SearchService.cs | 10 ++++++---- src/SDKs/_metadata/search_resource-manager.txt | 8 ++++---- 4 files changed, 15 insertions(+), 12 deletions(-) diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs index f3795db6f79f6..cdf2b34344cca 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/Resource.cs @@ -39,8 +39,8 @@ public Resource() /// The resource type. /// The geographic location of the resource. /// This must be one of the supported and registered Azure Geo Regions - /// (for example, West US, East US, Southeast Asia, and so - /// forth). + /// (for example, West US, East US, Southeast Asia, and so forth). This + /// property is required when creating a new resource. /// Tags to help categorize the resource in the /// Azure portal. public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) @@ -80,7 +80,8 @@ public Resource() /// /// Gets or sets the geographic location of the resource. This must be /// one of the supported and registered Azure Geo Regions (for example, - /// West US, East US, Southeast Asia, and so forth). + /// West US, East US, Southeast Asia, and so forth). This property is + /// required when creating a new resource. /// [JsonProperty(PropertyName = "location")] public string Location { get; set; } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs index 6bde03595e8f7..2195b275eddfb 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchManagementRequestOptions.cs @@ -50,7 +50,7 @@ public SearchManagementRequestOptions() /// request. If specified, this will be included in response /// information as a way to track the request. /// - [JsonProperty(PropertyName = "")] + [Newtonsoft.Json.JsonIgnore] public System.Guid? ClientRequestId { get; set; } } diff --git a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs index 039364d89acf3..5f7c751be67d6 100644 --- a/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs +++ b/src/SDKs/Search/Management/Management.Search/Generated/Models/SearchService.cs @@ -40,8 +40,8 @@ public SearchService() /// The resource type. /// The geographic location of the resource. /// This must be one of the supported and registered Azure Geo Regions - /// (for example, West US, East US, Southeast Asia, and so - /// forth). + /// (for example, West US, East US, Southeast Asia, and so forth). This + /// property is required when creating a new resource. /// Tags to help categorize the resource in the /// Azure portal. /// The number of replicas in the Search @@ -91,7 +91,8 @@ public SearchService() /// uses capacity that is already set up. Possible values include: /// 'succeeded', 'provisioning', 'failed' /// The SKU of the Search Service, which determines - /// price tier and capacity limits. + /// price tier and capacity limits. This property is required when + /// creating a new Search Service. public SearchService(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), int? replicaCount = default(int?), int? partitionCount = default(int?), HostingMode? hostingMode = default(HostingMode?), SearchServiceStatus? status = default(SearchServiceStatus?), string statusDetails = default(string), ProvisioningState? provisioningState = default(ProvisioningState?), Sku sku = default(Sku)) : base(id, name, type, location, tags) { @@ -185,7 +186,8 @@ public SearchService() /// /// Gets or sets the SKU of the Search Service, which determines price - /// tier and capacity limits. + /// tier and capacity limits. This property is required when creating a + /// new Search Service. /// [JsonProperty(PropertyName = "sku")] public Sku Sku { get; set; } diff --git a/src/SDKs/_metadata/search_resource-manager.txt b/src/SDKs/_metadata/search_resource-manager.txt index d6ed1822ee603..e24b45ae11498 100644 --- a/src/SDKs/_metadata/search_resource-manager.txt +++ b/src/SDKs/_metadata/search_resource-manager.txt @@ -1,9 +1,9 @@ -2018-01-09 22:38:00 UTC +2018-01-11 02:33:03 UTC 1) azure-rest-api-specs repository information -GitHub user: brjohnstmsft -Branch: update-search-mgmt-spec -Commit: 6a31c5b2391c99143fb762d48d4ebc5120df358d +GitHub user: Azure +Branch: master +Commit: 6b8130960809d1685744222300de051f4e785bda 2) AutoRest information Requested version: latest